@@ -110,7 +110,7 @@ public void OpenOrInitRepository(string path, RepositoryNode parent, bool bMoveE
110
110
var node = Preferences . Instance . FindOrAddNodeByRepositoryPath ( repoRoot , parent , bMoveExistedNode ) ;
111
111
Refresh ( ) ;
112
112
113
- var launcher = App . GetLauncer ( ) ;
113
+ var launcher = App . GetLauncher ( ) ;
114
114
launcher ? . OpenRepositoryInTab ( node , launcher . ActivePage ) ;
115
115
}
116
116
@@ -122,7 +122,7 @@ public void InitRepository(string path, RepositoryNode parent, string reason)
122
122
return ;
123
123
}
124
124
125
- var activePage = App . GetLauncer ( ) . ActivePage ;
125
+ var activePage = App . GetLauncher ( ) . ActivePage ;
126
126
if ( activePage != null && activePage . CanCreatePopup ( ) )
127
127
activePage . Popup = new Init ( activePage . Node . Id , path , parent , reason ) ;
128
128
}
@@ -135,7 +135,7 @@ public void Clone()
135
135
return ;
136
136
}
137
137
138
- var activePage = App . GetLauncer ( ) . ActivePage ;
138
+ var activePage = App . GetLauncher ( ) . ActivePage ;
139
139
if ( activePage != null && activePage . CanCreatePopup ( ) )
140
140
activePage . Popup = new Clone ( activePage . Node . Id ) ;
141
141
}
@@ -163,7 +163,7 @@ public void ScanDefaultCloneDir()
163
163
return ;
164
164
}
165
165
166
- var activePage = App . GetLauncer ( ) . ActivePage ;
166
+ var activePage = App . GetLauncher ( ) . ActivePage ;
167
167
if ( activePage != null && activePage . CanCreatePopup ( ) )
168
168
activePage . StartPopup ( new ScanRepositories ( defaultCloneDir ) ) ;
169
169
}
@@ -175,7 +175,7 @@ public void ClearSearchFilter()
175
175
176
176
public void AddRootNode ( )
177
177
{
178
- var activePage = App . GetLauncer ( ) . ActivePage ;
178
+ var activePage = App . GetLauncher ( ) . ActivePage ;
179
179
if ( activePage != null && activePage . CanCreatePopup ( ) )
180
180
activePage . Popup = new CreateGroup ( null ) ;
181
181
}
@@ -197,7 +197,7 @@ public ContextMenu CreateContextMenu(RepositoryNode node)
197
197
openAll . Icon = App . CreateMenuIcon ( "Icons.Folder.Open" ) ;
198
198
openAll . Click += ( _ , e ) =>
199
199
{
200
- OpenAllInNode ( App . GetLauncer ( ) , node ) ;
200
+ OpenAllInNode ( App . GetLauncher ( ) , node ) ;
201
201
e . Handled = true ;
202
202
} ;
203
203
@@ -212,7 +212,7 @@ public ContextMenu CreateContextMenu(RepositoryNode node)
212
212
open . Icon = App . CreateMenuIcon ( "Icons.Folder.Open" ) ;
213
213
open . Click += ( _ , e ) =>
214
214
{
215
- App . GetLauncer ( ) ? . OpenRepositoryInTab ( node , null ) ;
215
+ App . GetLauncher ( ) ? . OpenRepositoryInTab ( node , null ) ;
216
216
e . Handled = true ;
217
217
} ;
218
218
@@ -267,7 +267,7 @@ public ContextMenu CreateContextMenu(RepositoryNode node)
267
267
move . Icon = App . CreateMenuIcon ( "Icons.MoveToAnotherGroup" ) ;
268
268
move . Click += ( _ , e ) =>
269
269
{
270
- var activePage = App . GetLauncer ( ) . ActivePage ;
270
+ var activePage = App . GetLauncher ( ) . ActivePage ;
271
271
if ( activePage != null && activePage . CanCreatePopup ( ) )
272
272
activePage . Popup = new MoveRepositoryNode ( node ) ;
273
273
0 commit comments