Parse minimise all borders on the JS side
Summary: Test Plan: Reviewers: Subscribers: Differential Revision: https://phabricator.kde.org/D4113
This commit is contained in:
parent
1f69c6ed6e
commit
3ba1d9c405
1 changed files with 2 additions and 2 deletions
|
@ -59,8 +59,8 @@ function init() {
|
|||
|
||||
var borders = readConfig("BorderActivate", "").toString().split(",");
|
||||
for (var i in borders) {
|
||||
var border = borders[i];
|
||||
if (border != "") {
|
||||
var border = parseInt(borders[i]);
|
||||
if (isFinite(border)) {
|
||||
registeredBorders.push(border);
|
||||
registerScreenEdge(border, minimizeAllWindows);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue