~xubuntu-dev/xfce4-session/grumpy

« back to all changes in this revision

Viewing changes to debian/patches/05_fix-resize-simple-splash-engine.patch

  • Committer: corsac
  • Date: 2009-02-27 01:13:49 UTC
  • mto: This revision was merged to the branch mainline in revision 114.
  • Revision ID: svn-v4:0c9b3bff-18ee-0310-b944-d1aa2700132f:desktop/trunk/xfce4-session:2781
merge back xfce 4.6 from svn-snapshots

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
Index: xfce4-session/engines/simple/simple.c
2
 
===================================================================
3
 
--- xfce4-session/engines/simple/simple.c       (revision 26398)
4
 
+++ xfce4-session/engines/simple/simple.c       (revision 26399)
5
 
@@ -429,7 +429,7 @@
6
 
 
7
 
   entry = gtk_entry_new ();
8
 
   gtk_table_attach (GTK_TABLE (table), entry, 0, 1, 1, 2,
9
 
-                    GTK_FILL, GTK_FILL, 0, 0);
10
 
+                    GTK_EXPAND | GTK_FILL, GTK_FILL, 0, 0);
11
 
   gtk_widget_show (entry);
12
 
 
13
 
   image = gtk_image_new_from_stock (GTK_STOCK_OPEN, GTK_ICON_SIZE_BUTTON);
14
 
@@ -437,7 +437,7 @@
15
 
   button = gtk_button_new ();
16
 
   gtk_container_add (GTK_CONTAINER (button), image);
17
 
   gtk_table_attach (GTK_TABLE (table), button, 1, 2, 1, 2,
18
 
-                    GTK_EXPAND | GTK_FILL, GTK_FILL, 0, 0);
19
 
+                    GTK_FILL, GTK_FILL, 0, 0);
20
 
   gtk_widget_show (button);
21
 
 
22
 
   path = xfsm_splash_rc_read_entry (config->rc, "Image", NULL);