summaryrefslogtreecommitdiffstats
path: root/views
diff options
context:
space:
mode:
Diffstat (limited to 'views')
-rw-r--r--views/window/window_gtk.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/views/window/window_gtk.cc b/views/window/window_gtk.cc
index 4f8a251..adc714c 100644
--- a/views/window/window_gtk.cc
+++ b/views/window/window_gtk.cc
@@ -253,9 +253,9 @@ bool WindowGtk::ShouldUseNativeFrame() const {
}
void WindowGtk::FrameTypeChanged() {
- // We currently don't support different frame types on Gtk, so we don't
- // need to implement this.
- NOTIMPLEMENTED();
+ // This is called when the Theme has changed, so forward the event to the root
+ // widget.
+ GetRootView()->NotifyThemeChanged();
}
////////////////////////////////////////////////////////////////////////////////