Skip to content

Commit

Permalink
Update window title upon Save As
Browse files Browse the repository at this point in the history
  • Loading branch information
RoadrunnerWMC committed Aug 8, 2022
1 parent 8686582 commit acd2464
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions BRFNTify.py
Original file line number Diff line number Diff line change
Expand Up @@ -430,6 +430,7 @@ def HandleSaveAs(self):
fn = QtWidgets.QFileDialog.getSaveFileName(self, 'Choose a new filename', '', 'Wii font files (*.brfnt);;All Files(*)')[0]
if not fn: return
self.savename = fn
self.setWindowTitle('BRFNTify Next - %s' % fn.replace('\\', '/').split('/')[-1])

self.HandleSave()

Expand Down

0 comments on commit acd2464

Please sign in to comment.