Skip to content

Instantly share code, notes, and snippets.

@dragon3
Created February 3, 2010 14:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dragon3/293648 to your computer and use it in GitHub Desktop.
Save dragon3/293648 to your computer and use it in GitHub Desktop.
diff --git a/xpi/chrome/content/quickPostForm.js b/xpi/chrome/content/quickPostForm.js
index 1ac39b6..6693133 100755
--- a/xpi/chrome/content/quickPostForm.js
+++ b/xpi/chrome/content/quickPostForm.js
@@ -42,7 +42,7 @@ function DialogPanel(position, message){
window.addEventListener('keydown', bind('onKeydown', this), true);
// 不可視にして描画を隠す
- self.elmWindow.style.opacity = 0;
+ // self.elmWindow.style.opacity = 0;
// コントロールと画像のロード後に体裁を整える
window.addEventListener('load', function(){
@@ -78,9 +78,10 @@ function DialogPanel(position, message){
}
window.addEventListener('resize', bind('onWindowResize', self), true);
+
} finally {
// #14 Linuxで表示されない現象の仮パッチ
- self.elmWindow.style.opacity = 1;
+ // self.elmWindow.style.opacity = 1;
}
}, 0);
}, true);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment