http://bugzilla.novell.com/show_bug.cgi?id=618951 http://bugzilla.novell.com/show_bug.cgi?id=618951#c2 --- Comment #2 from Ricardo Cruz <rpmcruz@alunos.dcc.fc.up.pt> 2010-07-01 21:23:09 UTC --- Critical point (YGDialog.cc): if (_main_window) { int width = DEFAULT_WIDTH, height = DEFAULT_HEIGHT; if (YGUI::ui()->defaultWidth()) width = YGUI::ui()->defaultWidth(); if (YGUI::ui()->defaultHeight()) height = YGUI::ui()->defaultHeight(); gtk_window_set_default_size (window, width, height); if (YGUI::ui()->setFullscreen()) gtk_window_fullscreen (window); else if (YUI::app()->displayWidth() <= 800 || YUI::app()->displayHeight() <= 600) // maximize for small displays gtk_window_maximize (window); } YGUI::defaultWidth/Height() returns the following for sw_single: void YGUI::pkgSelectorSize (int *width, int *height) { *width = 750; *height = 750; } We need to crop the size like in YGDialog::setMinSize(): width = MIN (width, YUI::app()->displayWidth()); height = MIN (height, YUI::app()->displayHeight()); -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.