Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 2.1, 2.1.1, and 2.1.2

reporegistry: do not scan subrepos when creating the repo registry

Instead, they will be scanned when the show subrepos and show network subrepos
options are loaded.

Changeset b456652089a2

Parent dbb5a0bb29e2

by Angel Ezquerra

Changes to 2 files · Browse files at b456652089a2 Showing diff from parent dbb5a0bb29e2 Diff from another changeset...

 
180
181
182
183
 
184
185
186
 
180
181
182
 
183
184
185
186
@@ -180,7 +180,7 @@
  showMessage = pyqtSignal(QString)   openRepo = pyqtSignal(QString, bool)   - def __init__(self, parent, showSubrepos=True, showNetworkSubrepos=True): + def __init__(self, parent, showSubrepos=False, showNetworkSubrepos=False):   QDockWidget.__init__(self, parent)     self.showSubrepos = showSubrepos
 
70
71
72
73
74
 
 
75
76
77
 
70
71
72
 
 
73
74
75
76
77
@@ -70,8 +70,8 @@
   class RepoTreeModel(QAbstractItemModel):   - def __init__(self, filename, parent, showSubrepos=True, - showNetworkSubrepos=True): + def __init__(self, filename, parent, showSubrepos=False, + showNetworkSubrepos=False):   QAbstractItemModel.__init__(self, parent)     self.showSubrepos = showSubrepos