Title: [280140] trunk/Source/WebKit
Revision
280140
Author
[email protected]
Date
2021-07-21 08:32:30 -0700 (Wed, 21 Jul 2021)

Log Message

[GTK] Theme scrollbar css is no longer respected
https://bugs.webkit.org/show_bug.cgi?id=228145

Patch by Alexander Mikhaylenko <[email protected]> on 2021-07-21
Reviewed by Michael Catanzaro.

Fix a fontName -> themeName typo.

* WebProcess/gtk/GtkSettingsManagerProxy.cpp:
(WebKit::GtkSettingsManagerProxy::applySettings):

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (280139 => 280140)


--- trunk/Source/WebKit/ChangeLog	2021-07-21 15:31:17 UTC (rev 280139)
+++ trunk/Source/WebKit/ChangeLog	2021-07-21 15:32:30 UTC (rev 280140)
@@ -1,3 +1,15 @@
+2021-07-21  Alexander Mikhaylenko  <[email protected]>
+
+        [GTK] Theme scrollbar css is no longer respected
+        https://bugs.webkit.org/show_bug.cgi?id=228145
+
+        Reviewed by Michael Catanzaro.
+
+        Fix a fontName -> themeName typo.
+
+        * WebProcess/gtk/GtkSettingsManagerProxy.cpp:
+        (WebKit::GtkSettingsManagerProxy::applySettings):
+
 2021-07-21  Carlos Garcia Campos  <[email protected]>
 
         REGRESSION(r267763): [SOUP] After network process crash, all cookies are lost until browser is restarted

Modified: trunk/Source/WebKit/WebProcess/gtk/GtkSettingsManagerProxy.cpp (280139 => 280140)


--- trunk/Source/WebKit/WebProcess/gtk/GtkSettingsManagerProxy.cpp	2021-07-21 15:31:17 UTC (rev 280139)
+++ trunk/Source/WebKit/WebProcess/gtk/GtkSettingsManagerProxy.cpp	2021-07-21 15:32:30 UTC (rev 280140)
@@ -53,7 +53,7 @@
 void GtkSettingsManagerProxy::applySettings(GtkSettingsState&& state)
 {
     if (state.themeName) {
-        g_object_set(m_settings, "gtk-theme-name", state.fontName->utf8().data(), nullptr);
+        g_object_set(m_settings, "gtk-theme-name", state.themeName->utf8().data(), nullptr);
         RenderTheme::singleton().platformColorsDidChange();
         Page::updateStyleForAllPagesAfterGlobalChangeInEnvironment();
     }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to