Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
igagis committed Mar 28, 2024
1 parent 6097df7 commit c2616aa
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/ruisapp/glue/linux/glue_wayland.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,9 @@ struct window_wrapper : public utki::destructable {
struct wl_array* states
)
{
LOG([](auto&o){o << "window configure" << std::endl;})
LOG([](auto& o) {
o << "window configure" << std::endl;
})

// not a window geometry event, ignore
if (width == 0 && height == 0) {
Expand All @@ -315,7 +317,9 @@ struct window_wrapper : public utki::destructable {

// window resized

LOG([](auto&o){o << "window resized" << std::endl;})
LOG([](auto& o) {
o << "window resized" << std::endl;
})

auto& ww = get_impl(ruisapp::inst());

Expand Down

0 comments on commit c2616aa

Please sign in to comment.