| Age | Commit message (Collapse) | Author |
|
|
|
|
|
Support for scaled GUI was missing when the window titlebar is not layer-based.
|
|
The window title is copied in vectorial form when the titlebar is layer-backed.
|
|
|
|
Handles support of non-layered windows
|
|
|
|
|
|
|
|
|
|
|
|
non-layered views
|
|
|
|
|
|
Fl_File_Input::errorcolor() and Fl_File_Input::errorcolor(Fl_Color)
have not been used anywhere. Marked as deprecated.
|
|
|
|
|
|
|
|
|
|
|
|
scaled down
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
src/Fl_Table_Row.cxx:56:25: warning: argument 2 range
[18446744071562067969, 18446744073709551615] exceeds maximum
object size 9223372036854775807 [-Walloc-size-larger-than=]
arr = (char*)realloc(arr, count * sizeof(char));
~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~
Fixes #25
|
|
Running the tabs test app with all 6 subwindows shown under 10.3
and moving the window around had 3 subwindows drift away
from their correct position.
|
|
|
|
This allows to support the tabbing/untabbing of windows with simpler, clearer code.
This commit also fixes the resizing of Fl_Overlay_Window that was broken in the
recent commit "Simpler implementation of Fl_Cocoa_Window_Driver::resize()"
c66caf5dce9331fd3e011873711a768adb28cf9d
|
|
|
|
slightly simpler and more explicit than previous commit at
602c6ffd8a9154f323f38c2e599abea8947f1f04
|
|
|
|
The recent commit "Simpler implementation of Fl_Cocoa_Window_Driver::resize()"
c66caf5dce9331fd3e011873711a768adb28cf9d
did not take care of tabbing/untabbing of windows.
This is repaired here.
|
|
|
|
The correct order of operations is to resize the window after having set its style.
|
|
|
|
tested on macOS versions 10.3, 10.6, 10.9, 10.14
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|