Skip to content

Commit

Permalink
Ctrl+Shift is already used, changed shortcut to Ctrl+Alt+Click. #105
Browse files Browse the repository at this point in the history
  • Loading branch information
Mignari committed Mar 2, 2016
1 parent 5ff10bb commit 8753947
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/map_display.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -602,7 +602,7 @@ void MapCanvas::OnMouseActionClick(wxMouseEvent& event)
int mouse_map_x, mouse_map_y;
ScreenToMap(event.GetX(), event.GetY(), &mouse_map_x, &mouse_map_y);

if(event.ControlDown() && event.ShiftDown()) {
if(event.ControlDown() && event.AltDown()) {
Tile* tile = editor.map.getTile(mouse_map_x, mouse_map_y, floor);
if(tile && tile->size() > 0) {
Item* item = tile->getTopItem();
Expand Down

0 comments on commit 8753947

Please sign in to comment.