mirror of
https://github.com/swaywm/sway.git
synced 2025-11-12 13:29:56 -05:00
Allow marked containers to be moved out of the scratchpad via move command
This commit is contained in:
parent
1f2e0ff54b
commit
dbf4aa3e33
3 changed files with 30 additions and 17 deletions
|
|
@ -164,6 +164,10 @@ uint32_t view_configure(struct sway_view *view, double lx, double ly, int width,
|
|||
}
|
||||
|
||||
void view_autoconfigure(struct sway_view *view) {
|
||||
if (!view->container->workspace) {
|
||||
// Hidden in the scratchpad
|
||||
return;
|
||||
}
|
||||
struct sway_output *output = view->container->workspace->output;
|
||||
|
||||
if (view->container->is_fullscreen) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue