bind zoom hotkeys

This commit is contained in:
Eduardo Bart
2012-03-23 19:19:53 -03:00
parent 3aacd9d43c
commit d10a68613b
4 changed files with 4 additions and 6 deletions

View File

@@ -203,7 +203,7 @@ KeyCodeDescs = {
[KeyLeftParen] = '(',
[KeyRightParen] = ')',
[KeyAsterisk] = '*',
[KeyPlus] = '+',
[KeyPlus] = 'Plus',
[KeyComma] = ',',
[KeyMinus] = '-',
[KeyPeriod] = '.',

View File

@@ -45,6 +45,8 @@ function GameInterface.init()
Keyboard.bindKeyPress('Ctrl+Numpad2', function() g_game.turn(South) end, gameRootPanel, WALK_AUTO_REPEAT_DELAY)
Keyboard.bindKeyPress('Ctrl+Numpad4', function() g_game.turn(West) end, gameRootPanel, WALK_AUTO_REPEAT_DELAY)
Keyboard.bindKeyPress('Escape', function() g_game.cancelAttackAndFollow() end, gameRootPanel, WALK_AUTO_REPEAT_DELAY)
Keyboard.bindKeyPress('Ctrl+Plus', function() gameMapPanel:zoomIn() end, gameRootPanel, 250)
Keyboard.bindKeyPress('Ctrl+-', function() gameMapPanel:zoomOut() end, gameRootPanel, 250)
if g_game.isOnline() then
GameInterface.show()

View File

@@ -327,7 +327,6 @@ function Console.addTabText(text, speaktype, tab)
label:setText(text)
label:setColor(speaktype.color)
consoleTabBar:blinkTab(tab)
print 'yeah'
if panel:getChildCount() > 10 then
panel:removeChild(panel:getFirstChild())