SF.net SVN: fclient:[865] trunk/fclient/fclient/impl/ViewBrowser.py
Status: Pre-Alpha
Brought to you by:
jurner
|
From: <jU...@us...> - 2008-08-02 13:22:11
|
Revision: 865
http://fclient.svn.sourceforge.net/fclient/?rev=865&view=rev
Author: jUrner
Date: 2008-08-02 13:22:20 +0000 (Sat, 02 Aug 2008)
Log Message:
-----------
trying to speed up browser on gui start
Modified Paths:
--------------
trunk/fclient/fclient/impl/ViewBrowser.py
Modified: trunk/fclient/fclient/impl/ViewBrowser.py
===================================================================
--- trunk/fclient/fclient/impl/ViewBrowser.py 2008-08-02 13:21:29 UTC (rev 864)
+++ trunk/fclient/fclient/impl/ViewBrowser.py 2008-08-02 13:22:20 UTC (rev 865)
@@ -557,7 +557,7 @@
self.connect(ed, QtCore.SIGNAL('textChanged(const QString &)'), self.onEdFindTextChanged)
frameFind = self.controlById(self.IdFrameFind)
frameFind.setVisible(False)
-
+
#########################################
## private methods
#########################################
@@ -787,7 +787,9 @@
if not self.isCreated:
self.isCreated = True
# fire up a new broser to make a start
+ #TODO: find a better time to fire up the browser. how do we know when the gui is up and running?
self.newBrowser(title=self.trUtf8('Waiting for fproxy'))
+ QtGui.QApplication.instance().processEvents()
self.fcActions['ActionGoToHomePage'].trigger()
def viewClose(self):
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|