Thread: ReaLauncher
View Single Post
Old 07-15-2018, 09:15 AM   #68
solger
Human being with feelings
 
solger's Avatar
 
Join Date: Mar 2013
Posts: 5,852
Default

Quote:
Originally Posted by Lokasenna View Post
- Solved that issue with sorting. You have it sort when the menubox gets a mousedown event, but not mousewheel. Just need to add:
Code:
function GUI.elms.menu_sort:onwheel()
  if (noRecentProjects == false) then
    GUI.Menubox.onwheel(self)
    UpdateSortMode()
  end
end
Thanks. I totally overlooked that you can also use the mousewheel in this case

Quote:
- It's not at all clear that the checkbox is for window state, or what the X button does. You might want to either label them or use .tooltip to make them say something on hover.
Yeah, adding tooltips is already on my To Do list

The [X] button currently only removes all selections from the Listbox (previously it mainly disabled the filter, as well).
But since the Filter function is now working differently, this button will be most likely either removed in one of the next updates or used for a different function ...

Quote:
- There's a global hook for window resizing if you want. It's set just like GUI.Main:
Code:
GUI.onresize = function()
-- resize everything
end
I already tried some things using the .onresize function, but couldn't get it to work correctly yet.
But this is something I'll investigate further for the next update ...

Quote:
- Found another Listbox issue on my end; the list was displaying all nil when dragging the scrollbar with the mouse. Fixing shortly.
Cool, thanks.

Last edited by solger; 07-15-2018 at 09:29 AM.
solger is offline   Reply With Quote