Skip to content

Commit

Permalink
KOTOR2: Make the module listbox invisible
Browse files Browse the repository at this point in the history
  • Loading branch information
Nostritius authored and DrMcCoy committed Nov 22, 2017
1 parent bd84625 commit 5c41b29
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/engines/kotor2/gui/main/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,12 @@ void MainMenu::initWidget(Widget &widget) {
widget.setInvisible(true);
return;
}

// Whatever this module stuff is about
if (widget.getTag() == "LB_MODULES") {
widget.setInvisible(true);
return;
}
}

void MainMenu::callbackActive(Widget &widget) {
Expand Down

0 comments on commit 5c41b29

Please sign in to comment.