Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell/ev-window.c
diff options
context:
space:
mode:
authorEspeonEefi <eefi@caretdotcaret.org>2010-05-04 18:42:40 (GMT)
committer Carlos Garcia Campos <carlosgc@gnome.org>2010-05-04 18:43:53 (GMT)
commit87561e1ba0c69c46b49a8233cd8e43c78e7875bd (patch)
treebff3450a534d47a84f46737d0487b28981ad0823 /shell/ev-window.c
parent39cbaf29a551d246a7c00d2626aba8f1f3f3aa0d (diff)
[shell] Fix typo: request_width -> request_height
Diffstat (limited to 'shell/ev-window.c')
-rw-r--r--shell/ev-window.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/ev-window.c b/shell/ev-window.c
index 030a86d..29ee12a 100644
--- a/shell/ev-window.c
+++ b/shell/ev-window.c
@@ -1090,7 +1090,7 @@ setup_document_from_metadata (EvWindow *window)
screen = gtk_window_get_screen (GTK_WINDOW (window));
if (screen) {
request_width = MIN (request_width, gdk_screen_get_width (screen));
- request_height = MIN (request_width, gdk_screen_get_height (screen));
+ request_height = MIN (request_height, gdk_screen_get_height (screen));
}
if (request_width > 0 && request_height > 0) {