|
From: CVS C. to T. <the...@li...> - 2012-04-03 21:28:11
|
Revision: 693
http://themis.svn.sourceforge.net/themis/?rev=693&view=rev
Author: mark_hellegers
Date: 2012-04-03 21:28:05 +0000 (Tue, 03 Apr 2012)
Log Message:
-----------
Don't redraw the tab when a new url is loaded.
Just set the url directly in the navigation view.
Modified Paths:
--------------
trunk/themis/framework/win.cpp
Modified: trunk/themis/framework/win.cpp
===================================================================
--- trunk/themis/framework/win.cpp 2012-04-03 21:20:09 UTC (rev 692)
+++ trunk/themis/framework/win.cpp 2012-04-03 21:28:05 UTC (rev 693)
@@ -420,18 +420,9 @@
Broadcast(MS_TARGET_PROTOCOL, load);
delete load;
- /*
- * Trigger this after the UrlHandler knows about the URL.
- * Otherwise we wouldn't see any URL in UrlView during load.
- * Sad, but true.
- */
if (visible) {
- if (msg->FindBool("hidden") == true)
- tabview->DrawTabs();
- else
- tabview->Select(selection);
+ navview->SetUrl(url.String());
}
-
break;
}
case URL_TYPED: {
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|