Added "..." to reset buttons because those showing confirmation dialog now

This commit is contained in:
Jaex 2016-07-08 10:13:25 +03:00
parent aa72322c9a
commit a2ab6296cb
3 changed files with 4 additions and 8 deletions

View file

@ -254,12 +254,8 @@ public static string ParseQuoteString(this string str)
public static bool IsNumber(this string text)
{
foreach (char c in text)
{
if (!char.IsNumber(c)) return false;
}
return true;
int num;
return int.TryParse(text, out num);
}
public static string[] Lines(this string text)

View file

@ -166,7 +166,7 @@
<value>4</value>
</data>
<data name="btnReset.Text" xml:space="preserve">
<value>Restore default hotkeys</value>
<value>Restore default hotkeys...</value>
</data>
<data name="&gt;&gt;btnReset.Name" xml:space="preserve">
<value>btnReset</value>

View file

@ -244,7 +244,7 @@
<value>4</value>
</data>
<data name="btnReset.Text" xml:space="preserve">
<value>Reset to default</value>
<value>Reset to default...</value>
</data>
<data name="&gt;&gt;btnReset.Name" xml:space="preserve">
<value>btnReset</value>