Skip to content

Commit

Permalink
installer show option for Kentie's Launcher on Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
Die4Ever committed Jun 27, 2023
1 parent 09ae224 commit b99e89e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions installer/GUI/InstallerWindow.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ def InitFlavorSettings(self, f: str, row, pad) -> int:
self.FixColors(c)
row+=1

if f == 'Vanilla' and IsWindows():
if f == 'Vanilla':
l = Label(self.frame, text="Which EXE to use for vanilla:")
l.grid(column=1,row=row, sticky='SW', padx=pad*4, pady=pad)
row += 1
Expand All @@ -114,7 +114,7 @@ def InitFlavorSettings(self, f: str, row, pad) -> int:
Hovertip(r, "Kentie's Launcher stores configs and saves in your Documents folder.")
row += 1

r = Radiobutton(self.frame, text="Hanfling's Launch", variable=v, value='Launch')
r = Radiobutton(self.frame, text="Hanfling's Launch", variable=exe, value='Launch')
r.grid(column=1,row=row, sticky='SW', padx=pad*8, pady=pad)
self.FixColors(r)
Hovertip(r, "Hanfling's Launch stored configs and saves in the game directory.\nIf your game is in Program Files, then the game might require admin permissions to play.")
Expand Down

0 comments on commit b99e89e

Please sign in to comment.