Skip to content

Commit bf53071

Browse files
Merge pull request #2725 from Jagget/move-ui-elements
Missed 2 UI classes
2 parents ca91bd9 + e822e3b commit bf53071

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

Assets/Scripts/Game/UserInterfaceWindows/DaggerfallTradeWindow.cs

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -52,15 +52,15 @@ public partial class DaggerfallTradeWindow : DaggerfallInventoryWindow, IMacroCo
5252

5353
#region UI Controls
5454

55-
Panel costPanel;
56-
TextLabel costLabel;
57-
TextLabel goldLabel;
58-
59-
Panel actionButtonsPanel;
60-
Button selectButton;
61-
Button stealButton;
62-
Button modeActionButton;
63-
Button clearButton;
55+
protected Panel costPanel;
56+
protected TextLabel costLabel;
57+
protected TextLabel goldLabel;
58+
59+
protected Panel actionButtonsPanel;
60+
protected Button selectButton;
61+
protected Button stealButton;
62+
protected Button modeActionButton;
63+
protected Button clearButton;
6464

6565
#endregion
6666

Assets/Scripts/Game/UserInterfaceWindows/DaggerfallWitchesCovenPopupWindow.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ public class DaggerfallWitchesCovenPopupWindow : DaggerfallQuestPopupWindow
2121
{
2222
#region UI Rects
2323

24-
Rect talkButtonRect = new Rect(5, 5, 120, 7);
25-
Rect summonButtonRect = new Rect(5, 14, 120, 7);
26-
Rect questButtonRect = new Rect(5, 23, 120, 7);
27-
Rect exitButtonRect = new Rect(44, 33, 43, 15);
24+
protected Rect talkButtonRect = new Rect(5, 5, 120, 7);
25+
protected Rect summonButtonRect = new Rect(5, 14, 120, 7);
26+
protected Rect questButtonRect = new Rect(5, 23, 120, 7);
27+
protected Rect exitButtonRect = new Rect(44, 33, 43, 15);
2828

2929
#endregion
3030

0 commit comments

Comments
 (0)