Skip to content

Commit

Permalink
Fix a crash
Browse files Browse the repository at this point in the history
  • Loading branch information
IotaBread committed Jul 4, 2023
1 parent 08a155e commit add523c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ org.gradle.jvmargs = -Xmx1G
vt_version = 1.20

# Remember to also update on VTDMod.java
mod_version = 2.0.5
mod_version = 2.0.6
maven_group = me.bymartrixx
archives_base_name = vt-downloader
2 changes: 1 addition & 1 deletion src/main/java/me/bymartrixx/vtd/gui/VTDownloadScreen.java
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ protected void init() {
PROGRESS_BAR_WIDTH, PROGRESS_BAR_HEIGHT, PROGRESS_BAR_COLOR));
this.addDrawable(this.sharePopup);
this.addDrawable(this.errorPopup);
this.addDrawable(this.debugPopup);
if (this.debugPopup != null) this.addDrawable(this.debugPopup);

this.updateButtons();
this.readResourcePack();
Expand Down

0 comments on commit add523c

Please sign in to comment.