gimp r27072 - trunk/app/display
- From: neo svn gnome org
- To: svn-commits-list gnome org
- Subject: gimp r27072 - trunk/app/display
- Date: Mon, 29 Sep 2008 09:48:32 +0000 (UTC)
Author: neo
Date: Mon Sep 29 09:48:32 2008
New Revision: 27072
URL: http://svn.gnome.org/viewvc/gimp?rev=27072&view=rev
Log:
2008-09-29 Sven Neumann <sven gimp org>
* app/display/gimpdisplayshell.c (gimp_display_shell_new):
reduced
default window height to give a window aspect ratio of roughly
3:1
as requested by Peter.
Modified:
trunk/app/display/gimpdisplayshell.c
Modified: trunk/app/display/gimpdisplayshell.c
==============================================================================
--- trunk/app/display/gimpdisplayshell.c (original)
+++ trunk/app/display/gimpdisplayshell.c Mon Sep 29 09:48:32 2008
@@ -173,9 +173,9 @@
static void
gimp_display_shell_class_init (GimpDisplayShellClass *klass)
{
- GObjectClass *object_class = G_OBJECT_CLASS (klass);
- GtkObjectClass *gtk_object_class = GTK_OBJECT_CLASS (klass);
- GtkWidgetClass *widget_class = GTK_WIDGET_CLASS (klass);
+ GObjectClass *object_class = G_OBJECT_CLASS (klass);
+ GtkObjectClass *gtk_object_class = GTK_OBJECT_CLASS (klass);
+ GtkWidgetClass *widget_class = GTK_WIDGET_CLASS (klass);
display_shell_signals[SCALED] =
g_signal_new ("scaled",
@@ -827,8 +827,13 @@
{
options = shell->no_image_options;
+ /*
+ * These values are arbitrary. The width is determined by the
+ * menubar and the height is chosen to give a window aspect
+ * ratio of roughly 3:1 (as requested by the UI team).
+ */
image_width = GIMP_DEFAULT_IMAGE_WIDTH;
- image_height = GIMP_DEFAULT_IMAGE_HEIGHT;
+ image_height = GIMP_DEFAULT_IMAGE_HEIGHT / 3;
}
shell->dot_for_dot = display->config->default_dot_for_dot;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]