Fix plot management buttons color and text alignment

Fixes unintended black on black buttons and left aligned button text.

Plot management uses Zupa's older defines. The only changes for this
button type are the background color and text alignment.

https://github.com/DevZupa/PlotManagement/blob/master/MaintainVersion/plotManagement/defines.hpp#L568

https://github.com/DevZupa/PlotManagement/blob/master/MaintainVersion/plotManagement/defines.hpp#L588
This commit is contained in:
ebaydayz
2016-05-17 22:02:21 -04:00
parent 113dd0618a
commit 9d51fb2736
4 changed files with 21 additions and 10 deletions

View File

@@ -643,7 +643,7 @@ class ZSC_RscToolbox {
sizeEx = "(((((safezoneW / safezoneH) min 1.2) / 1.2) / 25) * 0.8)";
};
class ZSC_RscTextT
class ZSC_RscTextT // Used in plot management
{
access = 0;
type = 0;
@@ -660,4 +660,16 @@ class ZSC_RscTextT
shadow = 2;
font = "Zeppelin32";
SizeEx = 0.03921;
};
class ZSC_RscButtonMenuBlue : ZSC_RscButtonMenu // Used in plot management
{
colorBackground[] = {"(profilenamespace getvariable ['GUI_BCG_RGB_R',0.3843])", "(profilenamespace getvariable ['GUI_BCG_RGB_G',0.7019])", "(profilenamespace getvariable ['GUI_BCG_RGB_B',0.8862])", 0.5};
class Attributes
{
font = "Zeppelin32";
color = "#E5E5E5";
align = "center";
shadow = "false";
};
};