Skip to content

Commit

Permalink
SADXLVL2: Fixed an oversight in "Duplicate To"
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-fadely committed Aug 4, 2015
1 parent 21b4563 commit 5f78ad1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SADXLVL2/MainForm.cs
Expand Up @@ -2567,7 +2567,7 @@ private void preferencesToolStripMenuItem_Click(object sender, EventArgs e)

private void duplicateToToolStripMenuItem_Click(object sender, EventArgs e)
{
if (selectedItems.ItemCount > 0)
if (selectedItems.ItemCount == 0)
{
MessageBox.Show("To use this feature you must have a selection!");
return;
Expand Down

0 comments on commit 5f78ad1

Please sign in to comment.