View Single Post
Old 07-23-2017, 09:35 AM   #30
Flaneurette
Human being with feelings
 
Join Date: Dec 2016
Posts: 373
Default

Also made a custom adjustment/preference in the Menubox.lua.

Code:
290	local x, y = self.x, self.y
291	gfx.x, gfx.y = self.x, self.y + 20
or
Code:
290	self.__index = self
291	gfx.x, gfx.y = self.x, self.y + 20
instead of:

Code:
290	gfx.x, gfx.y = GUI.mouse.x, GUI.mouse.y
This way the dropdown will fit tightly next, and under the menubox instead of floating around wherever I click.
Flaneurette is offline   Reply With Quote