Skip to content
This repository was archived by the owner on Aug 23, 2025. It is now read-only.

Commit 7350d16

Browse files
committed
Version 1.4.4
Fixed issue #54
1 parent 91438e9 commit 7350d16

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

86BoxManager/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@
3131
// You can specify all the values or you can default the Build and Revision Numbers
3232
// by using the '*' as shown below:
3333

34-
[assembly: AssemblyVersion("1.4.3.0")]
35-
[assembly: AssemblyFileVersion("1.4.3.0")]
34+
[assembly: AssemblyVersion("1.4.4.0")]
35+
[assembly: AssemblyFileVersion("1.4.4.0")]

86BoxManager/frmMain.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1098,7 +1098,7 @@ private void createADesktopShortcutToolStripMenuItem_Click(object sender, EventA
10981098
//Starts/stops selected VM when enter is pressed
10991099
private void lstVMs_KeyDown(object sender, KeyEventArgs e)
11001100
{
1101-
if (e.KeyCode == Keys.Enter)
1101+
if (e.KeyCode == Keys.Enter && lstVMs.SelectedItems.Count > 0)
11021102
{
11031103
VM vm = (VM)lstVMs.SelectedItems[0].Tag;
11041104
if (vm.Status == VM.STATUS_RUNNING)

0 commit comments

Comments
 (0)