From 27f7871a08812af292ac064d6a84c105b51cc713 Mon Sep 17 00:00:00 2001 From: Mateusz Pawlica Date: Sat, 31 Jan 2015 22:30:14 +0100 Subject: [PATCH 1/2] Minimap widget is now horizontally resizeable --- modules/game_minimap/minimap.otui | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/modules/game_minimap/minimap.otui b/modules/game_minimap/minimap.otui index fa156c7b..f5cf43f9 100644 --- a/modules/game_minimap/minimap.otui +++ b/modules/game_minimap/minimap.otui @@ -20,3 +20,9 @@ MiniWindow Minimap id: minimap anchors.fill: parent + + ResizeBorder + anchors.right: parent.right + anchors.top: parent.top + anchors.bottom: parent.bottom + enabled: true From af0819f454855992664fc34ad03068aaa91833b6 Mon Sep 17 00:00:00 2001 From: Mateusz Pawlica Date: Sat, 31 Jan 2015 22:31:58 +0100 Subject: [PATCH 2/2] Changed rule violation window default focus --- modules/game_ruleviolation/ruleviolation.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/game_ruleviolation/ruleviolation.lua b/modules/game_ruleviolation/ruleviolation.lua index d6944613..156fdded 100644 --- a/modules/game_ruleviolation/ruleviolation.lua +++ b/modules/game_ruleviolation/ruleviolation.lua @@ -90,6 +90,7 @@ function show(target, statement) ruleViolationWindow:show() ruleViolationWindow:raise() ruleViolationWindow:focus() + ruleViolationWindow:getChildById('commentText'):focus() end end