Fix screen stacking bug

You can no longer open a whole stack of Prefs windows, or Create Torrent windows

Simplifies and fixes behavior when dropping files onto the app or the dock icon. Before, you could use drag-drop to create stacks of Create Torrent windows. Now, you can only create torrents from the home screen.

Fixes #665
This commit is contained in:
DC
2016-08-10 00:53:27 -07:00
parent 563e1ca0ba
commit 4d48b9e7c1
12 changed files with 91 additions and 92 deletions

View File

@@ -206,13 +206,13 @@ function toggleFullScreen (flag) {
}
function onWindowBlur () {
menu.onWindowBlur()
tray.onWindowBlur()
menu.setWindowFocus(false)
tray.setWindowFocus(false)
}
function onWindowFocus () {
menu.onWindowFocus()
tray.onWindowFocus()
menu.setWindowFocus(true)
tray.setWindowFocus(true)
}
function getIconPath () {