Skip to content

Commit

Permalink
fixup double-click not working to download addons in lobby
Browse files Browse the repository at this point in the history
  • Loading branch information
cbeck88 committed Mar 15, 2015
1 parent 1cafaf2 commit 281014a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/game_initialization/multiplayer_lobby.cpp
Expand Up @@ -417,7 +417,7 @@ void gamebrowser::handle_event(const SDL_Event& event)
if(event.type == DOUBLE_CLICK_EVENT) {
if (ignore_next_doubleclick_) {
ignore_next_doubleclick_ = false;
} else if(selection_is_joinable() || selection_is_observable()) {
} else if(selection_is_joinable_with_addons() || selection_is_observable_with_addons()) {
double_clicked_ = true;
last_was_doubleclick_ = true;
}
Expand Down

0 comments on commit 281014a

Please sign in to comment.