Skip to content

Commit

Permalink
added version string and show it in window title: 1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Deinhofer committed Jun 30, 2015
1 parent 20549e8 commit 13e4a72
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions FabiGUI/Form1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ namespace MouseApp2
{
public partial class FabiGUI : Form
{
const string VERSION_STRING = "1.0";

const int CMD_NOACTION = 0;
const int CMD_NEXT = 1;
Expand Down Expand Up @@ -75,6 +76,8 @@ public partial class FabiGUI : Form
public FabiGUI()
{
InitializeComponent();

Text += " " + VERSION_STRING;
foreach (string str in commands)
{
Button1FunctionBox.Items.Add(str);
Expand Down

0 comments on commit 13e4a72

Please sign in to comment.