Closed
Bug 289044
Opened 20 years ago
Closed 19 years ago
Exit / Quit button in toolbar is never visible
Categories
(Minimo Graveyard :: Minimo Front-End, defect)
Tracking
(Not tracked)
RESOLVED
WONTFIX
People
(Reporter: cwiiis, Unassigned)
Details
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.7.5) Gecko/20041110 Firefox/1.0
Build Identifier: 20050401
Using the smallest icon size for toolbars in GPE, with a resolution of 240x320
(default for many PDAs), the exit/quit button on the toolbar is never visible.
This is with a frameless theme, such as in
http://handhelds.org/scap/port.9124.png. There does appear to be room in there,
but it is replaced with the down arrow that provides access to it.
There definitely isn't room when using a theme with window-frames, such as in
http://handhelds.org/scap/port.1506.png - Perhaps the info button could be
removed, or moved to the settings drop-down?
Reproducible: Always
Updated•19 years ago
|
Assignee: dougt → nobody
Version: WinCE → unspecified
Comment 1•19 years ago
|
||
not sure that much development is going on for the gpe version of minimo. if someone wants to take this bug and re-open, have at it.
thanks
chris h.
Status: NEW → RESOLVED
Closed: 19 years ago
Resolution: --- → WONTFIX
Comment 2•19 years ago
|
||
(In reply to comment #1)
> not sure that much development is going on for the gpe version of minimo. if
> someone wants to take this bug and re-open, have at it.
I can give advises :) ...
try to add a 'gtk_window_set_default_size' line after these ones bellow (at embedding/minimo/app/Minimo.cpp)
// create our new toplevel window (LINE 144)
gMinimoBrowser->topLevelWindow = gtk_window_new(GTK_WINDOW_TOPLEVEL);
gtk_window_set_resizable (GTK_WINDOW(gMinimoBrowser->topLevelWindow),TRUE);
gtk_window_set_title (GTK_WINDOW (gMinimoBrowser->topLevelWindow), "MINIMO - Embedded Mozilla");
// THIS IS THE PLACE
gtk_window_set_default_size (GTK_WINDOW (gMinimoBrowser->topLevelWindow), 320, 240);
or 235, instead of 240 :)
tell us if it works for you
You need to log in
before you can comment on or make changes to this bug.
Description
•