Hello community,
here is the log from the commit of package yast2-control-center-gnome for
openSUSE:Factory checked in at 2014-08-06 15:31:48
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/yast2-control-center-gnome (Old)
and /work/SRC/openSUSE:Factory/.yast2-control-center-gnome.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "yast2-control-center-gnome"
Changes:
--------
---
/work/SRC/openSUSE:Factory/yast2-control-center-gnome/yast2-control-center-gnome.changes
2014-07-24 06:57:29.000000000 +0200
+++
/work/SRC/openSUSE:Factory/.yast2-control-center-gnome.new/yast2-control-center-gnome.changes
2014-08-06 15:31:49.000000000 +0200
@@ -1,0 +2,7 @@
+Tue Aug 5 05:30:44 UTC 2014 - [email protected]
+
+- revert ellipsis and tooltip for icon text, and wrap text with
+ PANGO_WRAP_WORD_CHAR instead of PANGO_WRAP_WORD (bnc#889961)
+- 3.1.8
+
+-------------------------------------------------------------------
Old:
----
yast2-control-center-gnome-3.1.7.tar.bz2
New:
----
yast2-control-center-gnome-3.1.8.tar.bz2
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ yast2-control-center-gnome.spec ++++++
--- /var/tmp/diff_new_pack.41cPOF/_old 2014-08-06 15:31:50.000000000 +0200
+++ /var/tmp/diff_new_pack.41cPOF/_new 2014-08-06 15:31:50.000000000 +0200
@@ -17,7 +17,7 @@
Name: yast2-control-center-gnome
-Version: 3.1.7
+Version: 3.1.8
Release: 0
Summary: YaST2 - Control Center (GNOME version)
++++++ yast2-control-center-gnome-3.1.7.tar.bz2 ->
yast2-control-center-gnome-3.1.8.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/yast2-control-center-gnome-3.1.7/package/yast2-control-center-gnome.changes
new/yast2-control-center-gnome-3.1.8/package/yast2-control-center-gnome.changes
---
old/yast2-control-center-gnome-3.1.7/package/yast2-control-center-gnome.changes
2014-07-22 09:26:11.000000000 +0200
+++
new/yast2-control-center-gnome-3.1.8/package/yast2-control-center-gnome.changes
2014-08-05 10:51:01.000000000 +0200
@@ -1,4 +1,11 @@
-------------------------------------------------------------------
+Tue Aug 5 05:30:44 UTC 2014 - [email protected]
+
+- revert ellipsis and tooltip for icon text, and wrap text with
+ PANGO_WRAP_WORD_CHAR instead of PANGO_WRAP_WORD (bnc#889961)
+- 3.1.8
+
+-------------------------------------------------------------------
Tue Jul 22 07:04:54 UTC 2014 - [email protected]
- make category headings localized (bnc#877369)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/yast2-control-center-gnome-3.1.7/package/yast2-control-center-gnome.spec
new/yast2-control-center-gnome-3.1.8/package/yast2-control-center-gnome.spec
---
old/yast2-control-center-gnome-3.1.7/package/yast2-control-center-gnome.spec
2014-07-22 09:26:11.000000000 +0200
+++
new/yast2-control-center-gnome-3.1.8/package/yast2-control-center-gnome.spec
2014-08-05 10:51:01.000000000 +0200
@@ -16,7 +16,7 @@
#
Name: yast2-control-center-gnome
-Version: 3.1.7
+Version: 3.1.8
Release: 0
Summary: YaST2 - Control Center (GNOME version)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/yast2-control-center-gnome-3.1.7/src/cut-n-paste/shell/cc-shell-item-view.c
new/yast2-control-center-gnome-3.1.8/src/cut-n-paste/shell/cc-shell-item-view.c
---
old/yast2-control-center-gnome-3.1.7/src/cut-n-paste/shell/cc-shell-item-view.c
2014-06-29 03:26:20.000000000 +0200
+++
new/yast2-control-center-gnome-3.1.8/src/cut-n-paste/shell/cc-shell-item-view.c
2014-08-05 10:51:01.000000000 +0200
@@ -148,32 +148,6 @@
g_free (id);
}
-gboolean
-iconview_query_tooltip_cb (GtkIconView *icon_view,
- gint x,
- gint y,
- gboolean keyborad_tip,
- GtkTooltip *tooltip,
- CcShellItemView *cc_view)
-{
- GtkTreeModel *model;
- GtkTreeIter iter;
- gchar *tooltip_text;
-
- if (!gtk_icon_view_get_tooltip_context (GTK_ICON_VIEW (cc_view),
- &x, &y,
- keyborad_tip,
- &model, NULL, &iter))
- return FALSE;
-
- gtk_tree_model_get (model, &iter,
- COL_NAME, &tooltip_text,
- -1);
- gtk_tooltip_set_text (tooltip, tooltip_text);
- g_free (tooltip_text);
- return TRUE;
-}
-
void
cc_shell_item_view_update_cells (CcShellItemView *view)
{
@@ -186,8 +160,7 @@
if (GTK_IS_CELL_RENDERER_TEXT (cell)) {
g_object_set (G_OBJECT (cell),
- "wrap-mode", PANGO_WRAP_WORD,
- "ellipsize", PANGO_ELLIPSIZE_END,
+ "wrap-mode", PANGO_WRAP_WORD_CHAR,
NULL);
/* We only have one text cell */
break;
@@ -226,18 +199,13 @@
{
self->priv = SHELL_ITEM_VIEW_PRIVATE (self);
- g_object_set (self,
- "margin", 0,
- "has-tooltip", TRUE,
- NULL);
+ g_object_set (self, "margin", 0, NULL);
g_signal_connect (self, "item-activated",
G_CALLBACK (iconview_item_activated_cb), self);
g_signal_connect (self, "button-press-event",
G_CALLBACK (iconview_button_press_event_cb), self);
g_signal_connect (self, "button-release-event",
G_CALLBACK (iconview_button_release_event_cb), self);
- g_signal_connect (self, "query-tooltip",
- G_CALLBACK (iconview_query_tooltip_cb), self);
}
GtkWidget *
--
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]