show a progress bar while the core loads

This commit is contained in:
Zlatin Balevsky
2019-05-29 21:58:01 +01:00
parent 415b6e5287
commit 0d83314c13
8 changed files with 136 additions and 8 deletions

View File

@@ -1,7 +1,7 @@
application {
title = 'MuWire'
startupGroups = ['EventList']
startupGroups = ['EventList', 'MainFrame']
autoShutdown = true
}
@@ -11,4 +11,9 @@ mvcGroups {
view = 'com.muwire.gui.EventListView'
controller = 'com.muwire.gui.EventListController'
}
'MainFrame' {
model = 'com.muwire.gui.MainFrameModel'
view = 'com.muwire.gui.MainFrameView'
controller = 'com.muwire.gui.MainFrameController'
}
}