aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@gnome.org>2003-09-25 22:22:37 +0800
committerMarco Pesenti Gritti <marco@src.gnome.org>2003-09-25 22:22:37 +0800
commit55b40647e65439d69831862ef98a25f039111325 (patch)
treeb67b44470aa25420d87d223e9d3593e7f3ff6353
parentd321a476c7fe2d9a8174cf0f6a23ea523c469395 (diff)
downloadgsoc2013-epiphany-55b40647e65439d69831862ef98a25f039111325.tar
gsoc2013-epiphany-55b40647e65439d69831862ef98a25f039111325.tar.gz
gsoc2013-epiphany-55b40647e65439d69831862ef98a25f039111325.tar.bz2
gsoc2013-epiphany-55b40647e65439d69831862ef98a25f039111325.tar.lz
gsoc2013-epiphany-55b40647e65439d69831862ef98a25f039111325.tar.xz
gsoc2013-epiphany-55b40647e65439d69831862ef98a25f039111325.tar.zst
gsoc2013-epiphany-55b40647e65439d69831862ef98a25f039111325.zip
Fix spacing ... when gtkdialog will be higgy ...
2003-09-25 Marco Pesenti Gritti <marco@gnome.org> * data/glade/epiphany.glade: * src/ephy-history-window.c: (confirmation_dialog_construct): Fix spacing ... when gtkdialog will be higgy ...
-rw-r--r--ChangeLog7
-rw-r--r--data/glade/epiphany.glade4
-rw-r--r--src/ephy-history-window.c3
3 files changed, 11 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 0533aa3bb..801e0304b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,13 @@
2003-09-25 Marco Pesenti Gritti <marco@gnome.org>
* data/glade/epiphany.glade:
+ * src/ephy-history-window.c: (confirmation_dialog_construct):
+
+ Fix spacing ... when gtkdialog will be higgy ...
+
+2003-09-25 Marco Pesenti Gritti <marco@gnome.org>
+
+ * data/glade/epiphany.glade:
* embed/mozilla/ContentHandler.cpp:
Fix #123176. Use response instead of
diff --git a/data/glade/epiphany.glade b/data/glade/epiphany.glade
index 11707fab2..0b05ee4c5 100644
--- a/data/glade/epiphany.glade
+++ b/data/glade/epiphany.glade
@@ -1051,7 +1051,7 @@
<property name="border_width">5</property>
<property name="visible">True</property>
<property name="homogeneous">False</property>
- <property name="spacing">6</property>
+ <property name="spacing">12</property>
<child>
<widget class="GtkImage" id="image8">
@@ -1059,7 +1059,7 @@
<property name="stock">gtk-dialog-question</property>
<property name="icon_size">6</property>
<property name="xalign">0.5</property>
- <property name="yalign">0.5</property>
+ <property name="yalign">0</property>
<property name="xpad">0</property>
<property name="ypad">0</property>
</widget>
diff --git a/src/ephy-history-window.c b/src/ephy-history-window.c
index 69f62bcb3..8ce8e0281 100644
--- a/src/ephy-history-window.c
+++ b/src/ephy-history-window.c
@@ -259,7 +259,8 @@ confirmation_dialog_construct (EphyHistoryWindow *editor)
gtk_widget_show (label);
gtk_box_pack_start (GTK_BOX (hbox), label, FALSE, FALSE, 0);
- hbox = gtk_hbox_new (FALSE, 6);
+ hbox = gtk_hbox_new (FALSE, 12);
+ gtk_container_set_border_width (GTK_CONTAINER (hbox), 6);
gtk_widget_show (hbox);
gtk_box_pack_start (GTK_BOX (GTK_DIALOG (dialog)->vbox), hbox,
TRUE, TRUE, 0);