[SCM] WebKit Debian packaging branch, debian/experimental, updated. debian/1.3.8-1-1049-g2e11a8e
commit-queue at webkit.org
commit-queue at webkit.org
Fri Jan 21 14:37:55 UTC 2011
The following commit has been merged in the debian/experimental branch:
commit 4765da6143c07cfa1ca9b60b41e6db7a11b6d7c4
Author: commit-queue at webkit.org <commit-queue at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date: Thu Dec 23 16:39:57 2010 +0000
2010-12-23 Lucas De Marchi <lucas.demarchi at profusion.mobi>
Reviewed by Kenneth Rohde Christiansen.
[EFL] Make 'single' the default backing store in EWebLauncher
https://bugs.webkit.org/show_bug.cgi?id=51534
'single' is the simplest backing store and the one intended to be the
default in the test browser. By mistake the tiled backing store was
left as default in r72617.
* EWebLauncher/main.c:
(browserCreate): ditto.
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@74559 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/Tools/ChangeLog b/Tools/ChangeLog
index 7469e84..8b142f2 100644
--- a/Tools/ChangeLog
+++ b/Tools/ChangeLog
@@ -2,6 +2,20 @@
Reviewed by Kenneth Rohde Christiansen.
+ [EFL] Make 'single' the default backing store in EWebLauncher
+ https://bugs.webkit.org/show_bug.cgi?id=51534
+
+ 'single' is the simplest backing store and the one intended to be the
+ default in the test browser. By mistake the tiled backing store was
+ left as default in r72617.
+
+ * EWebLauncher/main.c:
+ (browserCreate): ditto.
+
+2010-12-23 Lucas De Marchi <lucas.demarchi at profusion.mobi>
+
+ Reviewed by Kenneth Rohde Christiansen.
+
[EFL] Subject: [webkit 4/4] [EFL] Remove non-sense workaround
https://bugs.webkit.org/show_bug.cgi?id=51533
diff --git a/Tools/EWebLauncher/main.c b/Tools/EWebLauncher/main.c
index f25ac38..a6c9c26 100644
--- a/Tools/EWebLauncher/main.c
+++ b/Tools/EWebLauncher/main.c
@@ -698,13 +698,14 @@ browserCreate(const char *url, const char *theme, const char *userAgent, Eina_Re
evas_object_layer_set(app->bg, EVAS_LAYER_MIN);
evas_object_show(app->bg);
- if (backingStore && !strcasecmp(backingStore, "single")) {
- app->browser = ewk_view_single_add(app->evas);
- info("backing store: single\n");
- } else {
+ if (backingStore && !strcasecmp(backingStore, "tiled")) {
app->browser = ewk_view_tiled_add(app->evas);
info("backing store: tiled\n");
+ } else {
+ app->browser = ewk_view_single_add(app->evas);
+ info("backing store: single\n");
}
+
ewk_view_theme_set(app->browser, theme);
if (userAgent)
ewk_view_setting_user_agent_set(app->browser, userAgent);
--
WebKit Debian packaging
More information about the Pkg-webkit-commits
mailing list