Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/hakchi2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2017-03-19 16:25:20 +0300
committerAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2017-03-19 17:05:26 +0300
commitc536f822c10d9ac3fcdf671a534a6f1bee0d2fc7 (patch)
tree37043d1371dfdefb65c012e43961c9667ffc754c /MainForm.cs
parent9308a0e0d57740f8e6070efe5302c8fb6ffbb267 (diff)
Just last fixes2.14
Diffstat (limited to 'MainForm.cs')
-rw-r--r--MainForm.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/MainForm.cs b/MainForm.cs
index d6a31848..2768dd0a 100644
--- a/MainForm.cs
+++ b/MainForm.cs
@@ -138,6 +138,11 @@ namespace com.clusterrr.hakchi_gui
max90toolStripMenuItem.Checked = ConfigIni.MaxGamesPerFolder == 90;
max100toolStripMenuItem.Checked = ConfigIni.MaxGamesPerFolder == 100;
+ // Little tweak for easy translation
+ var tbl = textBoxName.Left;
+ textBoxName.Left = labelName.Left + labelName.Width;
+ textBoxName.Width -= textBoxName.Left - tbl;
+
// Tweeks for message boxes
MessageBoxManager.Yes = MessageBoxManager.Retry = Resources.Yes;
MessageBoxManager.No = MessageBoxManager.Ignore = Resources.No;