diff options
author | Victor Kareh <[email protected]> | 2020-03-09 07:57:26 -0400 |
---|---|---|
committer | raveit65 <[email protected]> | 2020-04-02 16:16:24 +0200 |
commit | 3a36bf7b55ff3da09cf6ff181be27e9f9b7cd97b (patch) | |
tree | cc404b0c27d5dc280b8ef46274c7a17632591894 /src/core | |
parent | bea866ad354a16b22674074056e06869685c8911 (diff) | |
download | marco-3a36bf7b55ff3da09cf6ff181be27e9f9b7cd97b.tar.bz2 marco-3a36bf7b55ff3da09cf6ff181be27e9f9b7cd97b.tar.xz |
Remove unnecessary warnings about visible region
Also reformat recent code change to fix styling issues.
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/frame.c | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/src/core/frame.c b/src/core/frame.c index e28d669c..86b78f1f 100644 --- a/src/core/frame.c +++ b/src/core/frame.c @@ -407,12 +407,13 @@ meta_frame_sync_to_window (MetaFrame *frame, cairo_region_t * meta_frame_get_frame_bounds (MetaFrame *frame) { - if(frame->xwindow && frame->window !=NULL && frame->window->screen !=NULL && frame->window->screen->ui !=NULL) { - return meta_ui_get_frame_bounds (frame->window->screen->ui, - frame->xwindow, - frame->rect.width, - frame->rect.height); - } + if (frame->xwindow && frame->window != NULL && frame->window->screen != NULL && frame->window->screen->ui != NULL) + { + return meta_ui_get_frame_bounds (frame->window->screen->ui, + frame->xwindow, + frame->rect.width, + frame->rect.height); + } return NULL; } |