Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--webactivity.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/webactivity.py b/webactivity.py
index dade56a..d95e642 100644
--- a/webactivity.py
+++ b/webactivity.py
@@ -219,7 +219,8 @@ class WebActivity(activity.Activity):
# if we come across cairo versions >= 1.08.10
# More information can be found here:
# http://lists.sugarlabs.org/archive/sugar-devel/2010-July/025187.html
- self._disable_multiple_tabs = cairo.cairo_version() >= 10810
+ self._disable_multiple_tabs = cairo.cairo_version() >= 10810\
+ and cairo.cairo_version() < 11000
if self._disable_multiple_tabs:
logging.warning('Not enabling the multiple tabs feature due'
' to a bug in cairo/mozilla')