mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
6b3aa3e0a2
* Common - Hide cursor during progress bar (w/ CBA setting) * Fix base class define * Removed CBA setting for disabling hiding of the cursor for the ACE progress bar Co-authored-by: PabstMirror <pabstmirror@gmail.com>
18 lines
487 B
C++
18 lines
487 B
C++
class GVAR(DisableMouse_Dialog) {
|
|
idd = -1;
|
|
movingEnable = 0;
|
|
onLoad = QUOTE(with uiNameSpace do { GVAR(dlgDisableMouse) = _this # 0; };);
|
|
objects[] = {};
|
|
class controlsBackground {
|
|
// Transparent map allows setting custom cursor
|
|
class Background: ctrlMapEmpty {
|
|
idc = 101;
|
|
fade = 1;
|
|
x = "safezoneXAbs";
|
|
y = "safezoneY";
|
|
w = "safezoneWAbs";
|
|
h = "safezoneH";
|
|
};
|
|
};
|
|
};
|