diff options
Diffstat (limited to 'src/ui/frames.c')
-rw-r--r-- | src/ui/frames.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/ui/frames.c b/src/ui/frames.c index 1adb3ccf..9f1ee8cb 100644 --- a/src/ui/frames.c +++ b/src/ui/frames.c @@ -1030,6 +1030,20 @@ meta_frames_set_title (MetaFrames *frames, } void +meta_frames_update_frame_style (MetaFrames *frames, + Window xwindow) +{ + MetaUIFrame *frame; + + frame = meta_frames_lookup_window (frames, xwindow); + + g_assert (frame); + + meta_frames_attach_style (frames, frame); + invalidate_whole_window (frames, frame); +} + +void meta_frames_repaint_frame (MetaFrames *frames, Window xwindow) { |