Skip to content

Commit 7aede22

Browse files
committed
Fix dialog entry position bug.
Prep 1.5 a2
1 parent 6c899d7 commit 7aede22

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CardMaker/CardMakerBuild.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public static class CardMakerBuild
3131
public static string GetBuildSuffix()
3232
{
3333
#if UNSTABLE
34-
return "[UNSTABLE] V.A1";
34+
return "[UNSTABLE] V.A2";
3535
#else
3636
return string.Empty;
3737
#endif

CardMaker/Support/UI/QueryPanel.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -769,6 +769,7 @@ public Panel AddColorSelect(string sLabel, string sDefault, object zQueryKey, In
769769
AddPendingControl(zLabel);
770770
AddPendingControl(zButton);
771771
AddPendingControl(zPanel);
772+
AddToYPosition(zPanel.Size.Height + Y_CONTROL_BUFFER);
772773
var qItem = new QueryItem(ControlType.ColorPanel, zPanel, zButton, ref m_nTabIndex); // the tag of the QueryItem is the button (used when disabling the QueryItem)
773774
m_dictionaryItems.Add(zQueryKey, qItem);
774775
return zPanel;

0 commit comments

Comments
 (0)