mirror of
https://github.com/XorTroll/uLaunch
synced 2024-11-10 14:34:13 +00:00
Fix some default values
This commit is contained in:
parent
ade837bd78
commit
bbd2efd955
2 changed files with 4 additions and 4 deletions
|
@ -32,8 +32,8 @@ namespace ui
|
||||||
this->select_on = false;
|
this->select_on = false;
|
||||||
|
|
||||||
pu::ui::Color textclr = pu::ui::Color::FromHex(qapp->GetUIConfigValue<std::string>("text_color", "#e1e1e1ff"));
|
pu::ui::Color textclr = pu::ui::Color::FromHex(qapp->GetUIConfigValue<std::string>("text_color", "#e1e1e1ff"));
|
||||||
u32 menutextx = qapp->GetUIConfigValue<u32>("menu_folder_text_x", 15);
|
u32 menutextx = qapp->GetUIConfigValue<u32>("menu_folder_text_x", 30);
|
||||||
u32 menutexty = qapp->GetUIConfigValue<u32>("menu_folder_text_y", 15);
|
u32 menutexty = qapp->GetUIConfigValue<u32>("menu_folder_text_y", 200);
|
||||||
u32 menutextsz = qapp->GetUIConfigValue<u32>("menu_folder_text_size", 25);
|
u32 menutextsz = qapp->GetUIConfigValue<u32>("menu_folder_text_size", 25);
|
||||||
|
|
||||||
this->bgSuspendedRaw = RawData::New(0, 0, raw, 1280, 720, 4);
|
this->bgSuspendedRaw = RawData::New(0, 0, raw, 1280, 720, 4);
|
||||||
|
|
|
@ -97,8 +97,8 @@ Can be customized via files in `/ui`.
|
||||||
"menu_focus_color": "#5ebcffff",
|
"menu_focus_color": "#5ebcffff",
|
||||||
"menu_bg_color": "#0094ffff",
|
"menu_bg_color": "#0094ffff",
|
||||||
|
|
||||||
"menu_folder_text_x": 15,
|
"menu_folder_text_x": 30,
|
||||||
"menu_folder_text_y": 15,
|
"menu_folder_text_y": 200,
|
||||||
"menu_folder_text_size": 25,
|
"menu_folder_text_size": 25,
|
||||||
|
|
||||||
"main_menu": {
|
"main_menu": {
|
||||||
|
|
Loading…
Reference in a new issue