mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-02 13:05:59 +01:00
box: add missing include
This commit is contained in:
parent
cf1886ca44
commit
504ebe1b37
1 changed files with 4 additions and 0 deletions
|
@ -1,4 +1,8 @@
|
|||
#include "Box.hpp"
|
||||
|
||||
#include <limits>
|
||||
#include <algorithm>
|
||||
|
||||
wlr_box CBox::wlr() {
|
||||
CBox rounded = roundInternal();
|
||||
m_bWlrBox = wlr_box{(int)rounded.x, (int)rounded.y, (int)rounded.w, (int)rounded.h};
|
||||
|
|
Loading…
Reference in a new issue