Skip to content

Commit

Permalink
hemtt 1.8 RC2 math update
Browse files Browse the repository at this point in the history
  • Loading branch information
PabstMirror committed Jul 30, 2023
1 parent 0cb477b commit afbf9d8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions addons/settings/gui.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ class RscDisplayGameOptions {
// Disable multiline text to make in unselectable.
onLoad = QUOTE((_this select 0) ctrlSetText localize QUOTE(LSTRING(overwrite_clients)); (_this select 0) ctrlEnable false;);
idc = IDC_TXT_OVERWRITE_CLIENT;
style = QUOTE(ST_MULTI + ST_CENTER);
style = ST_MULTI + ST_CENTER;
x = QUOTE(POS_W(30));
y = QUOTE(POS_H(2));
w = QUOTE(POS_W(4));
Expand Down Expand Up @@ -510,7 +510,7 @@ class GVAR(Row_Time): GVAR(Row_Base) {
};
class Hours: RscEdit {
idc = IDC_SETTING_TIME_HOURS;
style = QUOTE(ST_CENTER + ST_NO_RECT);
style = ST_CENTER + ST_NO_RECT;
tooltip = "$STR_3DEN_Attributes_SliderTime_Hour_tooltip";
font = "EtelkaMonospaceProBold";
x = QUOTE(POS_W(18.25));
Expand Down Expand Up @@ -694,7 +694,7 @@ class GVAR(export) {
class controls {
class Value: RscEdit {
idc = IDC_EXPORT_VALUE;
style = QUOTE(ST_MULTI + ST_NO_RECT);
style = ST_MULTI + ST_NO_RECT;
colorDisabled[] = {0.95,0.95,0.95,1};
colorBackground[] = {1,1,1,0.2};
x = QUOTE(POS_W(0));
Expand Down

0 comments on commit afbf9d8

Please sign in to comment.