Merge pull request #1751 from oiad/master

Plot/Door management userlist fix
This commit is contained in:
ebaydayz
2016-08-23 13:51:42 -04:00
committed by GitHub
2 changed files with 6 additions and 7 deletions

View File

@@ -40,7 +40,7 @@ class DoorManagement
idc = 7104; idc = 7104;
text = $STR_EPOCH_ADD; text = $STR_EPOCH_ADD;
x = 0.33 * safezoneW + safezoneX; x = 0.33 * safezoneW + safezoneX;
y = 0.70 * safezoneH + safezoneY; y = 0.72 * safezoneH + safezoneY;
w = 0.08 * safezoneW; w = 0.08 * safezoneW;
onButtonClick = "[lbData [7101,lbCurSel 7101]] call DoorAddFriend;"; onButtonClick = "[lbData [7101,lbCurSel 7101]] call DoorAddFriend;";
}; };
@@ -50,7 +50,7 @@ class DoorManagement
idc = 7105; idc = 7105;
text = $STR_EPOCH_DELETE; text = $STR_EPOCH_DELETE;
x = 0.47 * safezoneW + safezoneX; x = 0.47 * safezoneW + safezoneX;
y = 0.70 * safezoneH + safezoneY; y = 0.72 * safezoneH + safezoneY;
w = 0.08 * safezoneW; w = 0.08 * safezoneW;
onButtonClick = "[(lbCurSel 7102)] call DoorRemoveFriend;"; onButtonClick = "[(lbCurSel 7102)] call DoorRemoveFriend;";
}; };
@@ -60,7 +60,7 @@ class DoorManagement
idc = 7106; idc = 7106;
text = $STR_UI_CLOSE; text = $STR_UI_CLOSE;
x = 0.40 * safezoneW + safezoneX; x = 0.40 * safezoneW + safezoneX;
y = 0.74 * safezoneH + safezoneY; y = 0.75 * safezoneH + safezoneY;
w = 0.08 * safezoneW; w = 0.08 * safezoneW;
onButtonClick = "((ctrlParent (_this select 0)) closeDisplay 9000);"; onButtonClick = "((ctrlParent (_this select 0)) closeDisplay 9000);";
}; };

View File

@@ -64,7 +64,6 @@ class PlotManagement
w = 0.30 * safezoneW; w = 0.30 * safezoneW;
h = 0.05 * safezoneH; h = 0.05 * safezoneH;
colorText[] = {1,1,1,1}; colorText[] = {1,1,1,1};
}; };
class RscText_7014: RscStructuredText class RscText_7014: RscStructuredText
@@ -140,7 +139,7 @@ class PlotManagement
idc = -1; idc = -1;
text = $STR_EPOCH_ADD; text = $STR_EPOCH_ADD;
x = 0.33 * safezoneW + safezoneX; x = 0.33 * safezoneW + safezoneX;
y = 0.70 * safezoneH + safezoneY; y = 0.72 * safezoneH + safezoneY;
w = 0.08 * safezoneW; w = 0.08 * safezoneW;
onButtonClick = "[lbData [7001,lbCurSel 7001]] call PlotAddFriend;"; onButtonClick = "[lbData [7001,lbCurSel 7001]] call PlotAddFriend;";
}; };
@@ -150,7 +149,7 @@ class PlotManagement
idc = -1; idc = -1;
text = $STR_EPOCH_DELETE; text = $STR_EPOCH_DELETE;
x = 0.47 * safezoneW + safezoneX; x = 0.47 * safezoneW + safezoneX;
y = 0.70 * safezoneH + safezoneY; y = 0.72 * safezoneH + safezoneY;
w = 0.08 * safezoneW; w = 0.08 * safezoneW;
onButtonClick = "[(lbCurSel 7002)] call PlotRemoveFriend;"; onButtonClick = "[(lbCurSel 7002)] call PlotRemoveFriend;";
}; };
@@ -160,7 +159,7 @@ class PlotManagement
idc = -1; idc = -1;
text = $STR_UI_CLOSE; text = $STR_UI_CLOSE;
x = 0.40 * safezoneW + safezoneX; x = 0.40 * safezoneW + safezoneX;
y = 0.74 * safezoneH + safezoneY; y = 0.75 * safezoneH + safezoneY;
w = 0.08 * safezoneW; w = 0.08 * safezoneW;
onButtonClick = "((ctrlParent (_this select 0)) closeDisplay 9000);"; onButtonClick = "((ctrlParent (_this select 0)) closeDisplay 9000);";
}; };