From f12d247cd80b9284050a9daa8cc0faa241aac280 Mon Sep 17 00:00:00 2001 From: Ross Burton Date: Fri, 13 Jun 2008 16:14:42 +0000 Subject: glib,atk,pango,gtk+: add unstable releases and use in poky-bleeding git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4645 311d38ba-8fff-0310-9ca6-ca027cbcb966 --- .../gtk+/gtk+-2.13.2/filechooser-sizefix.patch | 35 ++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 meta/packages/gtk+/gtk+-2.13.2/filechooser-sizefix.patch (limited to 'meta/packages/gtk+/gtk+-2.13.2/filechooser-sizefix.patch') diff --git a/meta/packages/gtk+/gtk+-2.13.2/filechooser-sizefix.patch b/meta/packages/gtk+/gtk+-2.13.2/filechooser-sizefix.patch new file mode 100644 index 000000000..694b059b9 --- /dev/null +++ b/meta/packages/gtk+/gtk+-2.13.2/filechooser-sizefix.patch @@ -0,0 +1,35 @@ +--- gtk+-2.12.7.orig/gtk/gtkfilechooserdialog.c ++++ gtk+-2.12.7/gtk/gtkfilechooserdialog.c +@@ -165,10 +165,10 @@ + gdk_screen_get_monitor_geometry (screen, monitor_num, &monitor); + + if (width) +- *width = MIN (*width, (monitor.width * 3) / 4); ++ *width = MIN (*width, monitor.width); + + if (height) +- *height = MIN (*height, (monitor.height * 3) / 4); ++ *height = MIN (*height, monitor.height); + } + + static void +@@ -183,6 +183,7 @@ + + priv = GTK_FILE_CHOOSER_DIALOG_GET_PRIVATE (dialog); + ++#if 0 + /* Unset any previously set size */ + gtk_widget_set_size_request (GTK_WIDGET (dialog), -1, -1); + +@@ -209,6 +210,11 @@ + /* Ideal target size plus any extra size */ + width = default_width + width + (2 * GTK_CONTAINER (dialog)->border_width); + height = default_height + height + (2 * GTK_CONTAINER (dialog)->border_width); ++#endif ++ ++ /* for small screens we just hard code a sensible value */ ++ width = 350; ++ height = 350; + + if (GTK_WIDGET_REALIZED (dialog)) + clamp_to_screen (GTK_WIDGET (dialog), &width, &height); -- cgit v1.2.3