public
Description: The solution for tabitus of the browser
Homepage: http://overstimulate.com/projects/taboo
Clone URL: git://github.com/anotherjesse/taboo.git
force redraw after panel closes... stupid ff3 bug
anotherjesse (author)
Sat Jul 19 18:35:52 -0700 2008
commit  54a826781abfa0894fbb9165e21380f0f2c3e978
tree    c0b178a334b8f39e337e806d2d63ce6f5d36f8e4
parent  e6abebc4382a55ab55d82577f03df32f62995010
...
322
323
324
 
 
 
 
 
 
 
325
326
327
...
322
323
324
325
326
327
328
329
330
331
332
333
334
0
@@ -322,6 +322,13 @@ function Taboo() {
0
   this.hideQuickShow = function() {
0
     window.removeEventListener('keypress', quickShowListener, true);
0
     quickShowEnum = null;
0
+
0
+ // force redraw after closing the panel
0
+ var win = window;
0
+ setTimeout(function() {
0
+ var wu = win.QueryInterface(Ci.nsIInterfaceRequestor).getInterface(Ci.nsIDOMWindowUtils);
0
+ wu.redraw();
0
+ }, 10);
0
   };
0
 
0
   this.quickShowInput = function(event) {

Comments

    No one has commented yet.