summaryrefslogtreecommitdiffstats
path: root/chrome/browser/ui
diff options
context:
space:
mode:
authorsail@chromium.org <sail@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-09-16 18:54:35 +0000
committersail@chromium.org <sail@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-09-16 18:54:35 +0000
commit4d1ffe7bb8cf7d97dc66e4a72af992177b293052 (patch)
tree00891562122f97695f7fc521103e4e7ce26dc8b4 /chrome/browser/ui
parent660a3bc6e89109459c9692b864cb2eca485ffa61 (diff)
downloadchromium_src-4d1ffe7bb8cf7d97dc66e4a72af992177b293052.zip
chromium_src-4d1ffe7bb8cf7d97dc66e4a72af992177b293052.tar.gz
chromium_src-4d1ffe7bb8cf7d97dc66e4a72af992177b293052.tar.bz2
Disable fading in global error bubble view
For some reason enabling fade causes the button in the bubble view to be disabled. Until this is fixed I'm disabling the fade effect. BUG= TEST= Review URL: http://codereview.chromium.org/7919008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@101543 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/ui')
-rw-r--r--chrome/browser/ui/views/global_error_bubble_view.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/chrome/browser/ui/views/global_error_bubble_view.cc b/chrome/browser/ui/views/global_error_bubble_view.cc
index 4a9efdd..2b51886 100644
--- a/chrome/browser/ui/views/global_error_bubble_view.cc
+++ b/chrome/browser/ui/views/global_error_bubble_view.cc
@@ -139,7 +139,9 @@ bool GlobalErrorBubbleView::CloseOnEscape() {
}
bool GlobalErrorBubbleView::FadeInOnShow() {
- return true;
+ // TODO(sail): Enabling fade causes the window to be disabled for some
+ // reason. Until this is fixed we need to disable fade.
+ return false;
}
void GlobalError::ShowBubbleView(Browser* browser, GlobalError* error) {