mirror of
https://github.com/kepler155c/opus
synced 2025-12-19 14:48:07 +00:00
package manager update + UI built-in extended char detection
This commit is contained in:
@@ -8,9 +8,9 @@ UI.ScrollBar = class(UI.Window)
|
||||
UI.ScrollBar.defaults = {
|
||||
UIElement = 'ScrollBar',
|
||||
lineChar = '|',
|
||||
sliderChar = '#',
|
||||
upArrowChar = '^',
|
||||
downArrowChar = 'v',
|
||||
sliderChar = UI.extChars and '\127' or '#',
|
||||
upArrowChar = UI.extChars and '\30' or '^',
|
||||
downArrowChar = UI.extChars and '\31' or 'v',
|
||||
scrollbarColor = colors.lightGray,
|
||||
width = 1,
|
||||
x = -1,
|
||||
|
||||
Reference in New Issue
Block a user