@@ -318,9 +318,9 @@ public void StashAll(bool autoStart)
318318 return ;
319319
320320 if ( autoStart )
321- PopupHost . ShowAndStartPopup ( new StashChanges ( _repo , _cached , false , true ) ) ;
321+ PopupHost . ShowAndStartPopup ( new StashChanges ( _repo , _cached , false ) ) ;
322322 else
323- PopupHost . ShowPopup ( new StashChanges ( _repo , _cached , false , true ) ) ;
323+ PopupHost . ShowPopup ( new StashChanges ( _repo , _cached , false ) ) ;
324324 }
325325
326326 public void StageSelected ( Models . Change next )
@@ -523,9 +523,8 @@ public ContextMenu CreateContextMenuForUnstagedChanges()
523523 stash . Click += ( _ , e ) =>
524524 {
525525 if ( PopupHost . CanCreatePopup ( ) )
526- {
527- PopupHost . ShowPopup ( new StashChanges ( _repo , _selectedUnstaged , false , false ) ) ;
528- }
526+ PopupHost . ShowPopup ( new StashChanges ( _repo , _selectedUnstaged , true ) ) ;
527+
529528 e . Handled = true ;
530529 } ;
531530
@@ -843,7 +842,7 @@ public ContextMenu CreateContextMenuForUnstagedChanges()
843842 stash . Click += ( _ , e ) =>
844843 {
845844 if ( PopupHost . CanCreatePopup ( ) )
846- PopupHost . ShowPopup ( new StashChanges ( _repo , _selectedUnstaged , false , false ) ) ;
845+ PopupHost . ShowPopup ( new StashChanges ( _repo , _selectedUnstaged , true ) ) ;
847846
848847 e . Handled = true ;
849848 } ;
@@ -928,7 +927,7 @@ public ContextMenu CreateContextMenuForStagedChanges()
928927 stash . Click += ( _ , e ) =>
929928 {
930929 if ( PopupHost . CanCreatePopup ( ) )
931- PopupHost . ShowPopup ( new StashChanges ( _repo , _selectedStaged , true , false ) ) ;
930+ PopupHost . ShowPopup ( new StashChanges ( _repo , _selectedStaged , true ) ) ;
932931
933932 e . Handled = true ;
934933 } ;
@@ -1097,7 +1096,7 @@ public ContextMenu CreateContextMenuForStagedChanges()
10971096 stash . Click += ( _ , e ) =>
10981097 {
10991098 if ( PopupHost . CanCreatePopup ( ) )
1100- PopupHost . ShowPopup ( new StashChanges ( _repo , _selectedStaged , true , false ) ) ;
1099+ PopupHost . ShowPopup ( new StashChanges ( _repo , _selectedStaged , true ) ) ;
11011100
11021101 e . Handled = true ;
11031102 } ;
0 commit comments