mirror of
https://github.com/NickHu/sway
synced 2024-12-27 21:58:11 +01:00
Revert "tree/view.c: fix uninitialized variables warning"
This reverts commit 6414b5d288
.
This commit is contained in:
parent
b90af33570
commit
a67e1b5873
1 changed files with 1 additions and 1 deletions
|
@ -258,7 +258,7 @@ void view_autoconfigure(struct sway_view *view) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
double x = 0, y = 0, width = 0, height = 0;
|
double x, y, width, height = 0;
|
||||||
switch (view->border) {
|
switch (view->border) {
|
||||||
case B_CSD:
|
case B_CSD:
|
||||||
case B_NONE:
|
case B_NONE:
|
||||||
|
|
Loading…
Reference in a new issue