some fixes
This commit is contained in:
parent
8d14d9bc99
commit
81dcd42fd1
|
@ -25,4 +25,4 @@ Panel
|
|||
|
||||
OptionCheckBox
|
||||
id: showPrivateMessagesInConsole
|
||||
text: Show private messages in console
|
||||
text: Show private messages in console
|
||||
|
|
|
@ -12,4 +12,4 @@ Module
|
|||
Options.init()
|
||||
|
||||
@onUnload: |
|
||||
Options.terminate()
|
||||
Options.terminate()
|
||||
|
|
|
@ -1,13 +1,14 @@
|
|||
OptionCheckBox < CheckBox
|
||||
@onCheckChange: Options.setOption(self:getId(), self:isChecked())
|
||||
@onSetup: self:setChecked(Options.getOption(self:getId()))
|
||||
height: 16
|
||||
|
||||
$first:
|
||||
anchors.left: parent.left
|
||||
anchors.right: parent.right
|
||||
anchors.top: parent.top
|
||||
|
||||
$middle:
|
||||
$!first:
|
||||
anchors.left: parent.left
|
||||
anchors.right: parent.right
|
||||
anchors.top: prev.bottom
|
||||
|
@ -16,7 +17,7 @@ OptionCheckBox < CheckBox
|
|||
MainWindow
|
||||
id: optionsWindow
|
||||
text: Options
|
||||
size: 286 200
|
||||
size: 286 230
|
||||
|
||||
@onEnter: Options.hide()
|
||||
@onEscape: Options.hide()
|
||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 646 B |
|
@ -246,7 +246,7 @@ end
|
|||
|
||||
function Battle.onMouseRelease(self, mousePosition, mouseButton)
|
||||
if mouseButton == MouseRightButton then
|
||||
g_game.createThingMenu(mousePosition, nil, nil, self.creature)
|
||||
GameInterface.createThingMenu(mousePosition, nil, nil, self.creature)
|
||||
return true
|
||||
elseif mouseButton == MouseLeftButton then
|
||||
local modifiers = g_window.getKeyboardModifiers()
|
||||
|
|
Loading…
Reference in New Issue