diff options
Diffstat (limited to 'app/shell-desktop.cpp')
-rw-r--r-- | app/shell-desktop.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/app/shell-desktop.cpp b/app/shell-desktop.cpp index 2aa5ee1..7cd239d 100644 --- a/app/shell-desktop.cpp +++ b/app/shell-desktop.cpp @@ -77,7 +77,9 @@ void Shell::deactivate_app(const QString &app_id) flush_connection(); } -void Shell::set_window_props(QWindow *win, const QString &app_id, uint32_t props, int x, int y) +void Shell::set_window_props(QWindow *win, const QString &app_id, + uint32_t props, int x, int y, int bx, int by, + int bwidth, int bheight) { QScreen *screen = nullptr; struct wl_output *output; @@ -95,6 +97,6 @@ void Shell::set_window_props(QWindow *win, const QString &app_id, uint32_t props output = getWlOutput(screen); agl_shell_desktop_set_app_property(this->shell.get(), app_id.toStdString().c_str(), - props, x, y, output); + props, x, y, bx, by, bwidth, bheight, output); flush_connection(); } |