diff options
author | Andrei Karas <akaras@inbox.ru> | 2020-05-07 12:22:37 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2020-05-07 12:41:56 +0300 |
commit | 4bb9a1021066ef96e7b424fe7a3949cbbcfa195c (patch) | |
tree | 547859c6d825513aa984d57fc8617fb4943f60be /src/gui/windows/chatwindow.cpp | |
parent | 75b5c657a149010e075f172cc9262432399ba54c (diff) | |
download | manaverse-4bb9a1021066ef96e7b424fe7a3949cbbcfa195c.tar.gz manaverse-4bb9a1021066ef96e7b424fe7a3949cbbcfa195c.tar.bz2 manaverse-4bb9a1021066ef96e7b424fe7a3949cbbcfa195c.tar.xz manaverse-4bb9a1021066ef96e7b424fe7a3949cbbcfa195c.zip |
Fix code style after merged switch port code
Diffstat (limited to 'src/gui/windows/chatwindow.cpp')
-rw-r--r-- | src/gui/windows/chatwindow.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/gui/windows/chatwindow.cpp b/src/gui/windows/chatwindow.cpp index 759764e48..7fc059f5c 100644 --- a/src/gui/windows/chatwindow.cpp +++ b/src/gui/windows/chatwindow.cpp @@ -823,11 +823,12 @@ void ChatWindow::keyPressed(KeyEvent &event) const InputActionT actionId = event.getActionId(); std::string temp; #ifdef __SWITCH__ - if(event.getKey().getValue() == KeyValue::TEXTINPUT) + if (event.getKey().getValue() == KeyValue::TEXTINPUT) { action(ActionEvent(this, "chatinput")); return; - } else + } + else #endif if (actionId == InputAction::GUI_DOWN) { |