Skip to content

Commit 7444659

Browse files
Alia5eliasdaler
authored andcommitted
(#47) Fix android delete/backspace keycodes
Previously SFML used wrong keycodes for backspace/delete keys - was fixed in SFML 2.5.
1 parent 2eaf1fd commit 7444659

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

imgui-SFML.cpp

-4
Original file line numberDiff line numberDiff line change
@@ -278,12 +278,8 @@ void Init(sf::Window& window, const sf::Vector2f& displaySize, bool loadDefaultF
278278
io.KeyMap[ImGuiKey_Home] = sf::Keyboard::Home;
279279
io.KeyMap[ImGuiKey_End] = sf::Keyboard::End;
280280
io.KeyMap[ImGuiKey_Insert] = sf::Keyboard::Insert;
281-
#ifdef ANDROID
282-
io.KeyMap[ImGuiKey_Backspace] = sf::Keyboard::Delete;
283-
#else
284281
io.KeyMap[ImGuiKey_Delete] = sf::Keyboard::Delete;
285282
io.KeyMap[ImGuiKey_Backspace] = sf::Keyboard::BackSpace;
286-
#endif
287283
io.KeyMap[ImGuiKey_Space] = sf::Keyboard::Space;
288284
io.KeyMap[ImGuiKey_Enter] = sf::Keyboard::Return;
289285
io.KeyMap[ImGuiKey_Escape] = sf::Keyboard::Escape;

0 commit comments

Comments
 (0)