Fix #283 and more:

* Might have fixed death window issue but not confirmed
* Stop hotkey window from display while offline
* Moved some required features to >= 840 if statement
  (protocol 840/842 arent supported in otclient yet)
This commit is contained in:
BeniS
2013-02-28 01:01:51 +13:00
parent ef20f59a98
commit 0bf909d52f
6 changed files with 24 additions and 14 deletions

View File

@@ -4,8 +4,7 @@ MainWindow
size: 180 180
visible: false
@onEscape: AddServer.hide()
@onEnter: |
AddServer.add()
@onEnter: AddServer.add()
Label
id: hostLabel
@@ -60,9 +59,8 @@ MainWindow
width: 64
anchors.right: parent.horizontalCenter
anchors.bottom: parent.bottom
margin-right: 5
@onClick: |
AddServer.add()
margin-right: 2
@onClick: AddServer.add()
Button
id: buttonCancel
@@ -70,4 +68,5 @@ MainWindow
width: 64
anchors.left: parent.horizontalCenter
anchors.bottom: parent.bottom
margin-left: 2
@onClick: AddServer.hide()