Skip to content

Commit

Permalink
Merge pull request #219 from raeleus/Kill-QuickSettingsTable
Browse files Browse the repository at this point in the history
Removed QuickSettingsTable
  • Loading branch information
tommyettinger authored Jan 19, 2025
2 parents e31fa4c + a0a30ef commit 02c486f
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 74 deletions.
4 changes: 1 addition & 3 deletions src/main/java/gdx/liftoff/ui/RootTable.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ public class RootTable extends Table {
public ThirdPartyTable thirdPartyTable;
public SettingsTable settingsTable;
public CompleteTable completeTable;
public QuickSettingsTable quickSettingsTable;

public RootTable() {
tables = new Array<>();
Expand All @@ -38,8 +37,7 @@ public RootTable() {
thirdPartyTable = new ThirdPartyTable();
settingsTable = new SettingsTable();
completeTable = new CompleteTable();
quickSettingsTable = new QuickSettingsTable();
tables.addAll(landingTable, addOnsTable, thirdPartyTable, settingsTable, completeTable, quickSettingsTable);
tables.addAll(landingTable, addOnsTable, thirdPartyTable, settingsTable, completeTable);

setTouchable(Touchable.enabled);
addListener(new ClickListener() {
Expand Down
70 changes: 0 additions & 70 deletions src/main/java/gdx/liftoff/ui/liftofftables/QuickSettingsTable.java

This file was deleted.

1 change: 0 additions & 1 deletion src/main/java/gdx/liftoff/ui/panels/PathsPanel.java
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ public void selected(Array<FileHandle> files) {
if (FullscreenDialog.fullscreenDialog != null)
FullscreenDialog.fullscreenDialog.updateGenerateButtons();
if (root.settingsTable != null) root.settingsTable.updateGenerateButton();
root.quickSettingsTable.populate();
updateDeleteProjectPathButton();
}
Gdx.app.postRunnable(() -> Gdx.input.setInputProcessor(stage));
Expand Down

0 comments on commit 02c486f

Please sign in to comment.