From: <aki...@us...> - 2008-07-28 21:04:08
|
Revision: 4550 http://gridarta.svn.sourceforge.net/gridarta/?rev=4550&view=rev Author: akirschbaum Date: 2008-07-28 21:04:16 +0000 (Mon, 28 Jul 2008) Log Message: ----------- Remove status bar updates while startup -- they are not shown. Modified Paths: -------------- trunk/crossfire/src/cfeditor/CMainControl.java trunk/daimonin/src/daieditor/CMainControl.java Modified: trunk/crossfire/src/cfeditor/CMainControl.java =================================================================== --- trunk/crossfire/src/cfeditor/CMainControl.java 2008-07-28 20:40:45 UTC (rev 4549) +++ trunk/crossfire/src/cfeditor/CMainControl.java 2008-07-28 21:04:16 UTC (rev 4550) @@ -301,7 +301,6 @@ scriptControl.getView().setMenu((JMenu) ACTION_FACTORY.find(mainView.getJMenuBar(), "plugins")); archetypeParser = new ArchetypeParser(this, archetypeChooserControl, animationObjects, archetypeSet); getGridartaObjectsFactory().init(faceObjects, objectChooser, archetypeChooserControl, selectedSquareView, this, getEditTypes(), getMapImageCache(), mapActions, archetypeParser); - mainView.getStatusBar().setStatusText("Loading Archetypes..."); archetypeSet.loadArchetypes(archetypeParser); if (globalSettings.isAutoPopupDocu()) { @@ -330,15 +329,11 @@ } scriptControl.loadScripts(new File(globalSettings.getMapDir(), IGUIConstants.SCRIPTS_DIR)); - mainView.getStatusBar().setStatusText("Sorting..."); archetypeChooserControl.finishBuildProcess(); // load the autojoin lists - mainView.getStatusBar().setStatusText("Loading Autojoin Tables..."); getAutojoinLists().loadList(archetypeSet, getConfigurationDirectory()); - mainView.getStatusBar().setStatusText("Ready."); - if (archetypeSet.getLoadStatus() == ArchetypeSet.LoadStatus.EMPTY) { ACTION_FACTORY.showMessageDialog(mainView, "loadArchesNoArchfiles"); } else { Modified: trunk/daimonin/src/daieditor/CMainControl.java =================================================================== --- trunk/daimonin/src/daieditor/CMainControl.java 2008-07-28 20:40:45 UTC (rev 4549) +++ trunk/daimonin/src/daieditor/CMainControl.java 2008-07-28 21:04:16 UTC (rev 4550) @@ -359,7 +359,6 @@ mapActions.updateMenuState(); archetypeParser = new ArchetypeParser(this, archetypeChooserControl, animationObjects, archetypeSet); getGridartaObjectsFactory().init(faceObjects, objectChooser, archetypeChooserControl, selectedSquareView, this, getEditTypes(), getMapImageCache(), mapActions, archetypeParser); - mainView.getStatusBar().setStatusText("Loading Archetypes..."); archetypeSet.loadArchetypes(archetypeParser); if (globalSettings.isAutoPopupDocu()) { @@ -404,15 +403,11 @@ // browse arch archive // load object from a arch file you found - mainView.getStatusBar().setStatusText("Sorting..."); archetypeChooserControl.finishBuildProcess(); // load the autojoin lists - mainView.getStatusBar().setStatusText("Loading Autojoin Tables..."); getAutojoinLists().loadList(archetypeSet, getConfigurationDirectory()); - mainView.getStatusBar().setStatusText("Ready."); - if (archetypeSet.getLoadStatus() == ArchetypeSet.LoadStatus.EMPTY) { ACTION_FACTORY.showMessageDialog(mainView, "loadArchesNoArchfiles"); } else { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |