You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This makes the highlighted / selected lines in popups and listboxes follow all other applications on the Mac. It also applies to tableviews, where it may not be wanted. I suggest making these user-configurable to cater for all needs.
The text was updated successfully, but these errors were encountered:
I made a slight mistake above: popups are standard mac controls, and use the correct colour, like combo boxes too. The listbox and tables are NAppGUI implementations, and sometimes do not follow standard usage (at least on the Mac)
The selected item's colour is not according to Apple standard.
In
osglobals.m: i_theme_colors
, line 109, you haveoscolor_NSColor_rgba_v([NSColor selectedControlColor], i_SELBG_COLOR);
which shows up, in a listbox, like this:
Instead, the line should read:
oscolor_NSColor_rgba_v([NSColor selectedContentBackgroundColor], i_SELBG_COLOR);
which shows the Mac standard colour:
This makes the highlighted / selected lines in popups and listboxes follow all other applications on the Mac. It also applies to tableviews, where it may not be wanted. I suggest making these user-configurable to cater for all needs.
The text was updated successfully, but these errors were encountered: