Bug report submitted from http://junkie.doomed.org
--------------------------------------------------------
Name: Jeremy
Email address: jeremy31@bigfoot.com
Junkie version: 0.3.1
Operating system: Gentoo 1.4
Bug importance level: medium
Is the bug reproducible? yes
Bug descripton (how it occured):
--------------------------------
It seems that the minimum width of the main Junkie window, as
well as the
preferences window, is one half of the system\'s horizontal
resolution.
For example, from gui_preferences.c):
gtk_widget_set_size_request(GTK_WIDGET(window),
gdk_screen_width() * 0.52,
gdk_screen_height() * 0.45);
(which has been made even larger in CVS!)
gtk_widget_set_size_request(GTK_WIDGET(window),
gdk_screen_width() * 0.56,
gdk_screen_height() * 0.50);
On a system with Twinview/Xinerama, this is a problem.
My desktop spans two monitors, so the smallest the window will
be is greater than
the width of one monitor!
debug output:
-------------
Non-crash bug.
conclusion/last words:
----------------------
Reworking the window-size coding would correct this bug.
Please consider at least allowing the resize of these windows
below the default size.