Skip to content

Commit 647bb8a

Browse files
committed
Give folders' double-click expand back. Closes #3537
1 parent b9561b7 commit 647bb8a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Rubberduck.Core/UI/CodeExplorer/CodeExplorerControl.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ private void TreeView_OnMouseDoubleClick(object sender, MouseButtonEventArgs e)
2121
if (ViewModel != null && ViewModel.OpenCommand.CanExecute(ViewModel.SelectedItem))
2222
{
2323
ViewModel.OpenCommand.Execute(ViewModel.SelectedItem);
24+
e.Handled = true;
2425
}
25-
e.Handled = true;
2626
}
2727

2828
private void TreeView_OnMouseRightButtonDown(object sender, MouseButtonEventArgs e)

0 commit comments

Comments
 (0)