| [ Return to Bugs & Features | Roadmap 2.0 | Post Text | Post File ]
STR #1304
Application: | FLTK Library |
Status: | 5 - New |
Priority: | 2 - Low, e.g. a documentation error or undocumented side-effect |
Scope: | 3 - Applies to all machines and operating systems |
Subsystem: | Unassigned |
Summary: | Resizable and Resize |
Version: | 2.0-current |
Created By: | z_hossain |
Assigned To: | Unassigned |
Fix Version: | Unassigned |
Update Notification: | |
Trouble Report Files:
[ Post File ]No files
Trouble Report Comments:
[ Post Text ]
|
#1 | z_hossain 01:33 Jun 01, 2006 |
| int main(int argc, char **argv) { Window *win = new Window(700, 550, "Test"); win->resize(10, 10, 200, 200); // *s-1 win->begin(); Widget *w = new Widget(0, 0, 500, 500, "Test1"); win->end(); win->resizable(w); // *s-2 win->show(argc, argv); return run(); } //2.6.15-1.2054_FC5 //(GCC) 4.1.0 20060304 -------------------------------------------------------------------------------- -----
One of the solutions (condition) is s-2 must be placed before s-1 to avoid this problem. It is better to have no such condition. Otherwise it should be well documented. | |
|
#2 | z_hossain 01:41 Jun 01, 2006 |
| Scope guess | |
[ Return to Bugs & Features | Post Text | Post File ]
|
| |