Skip to content

Commit

Permalink
don't put whole filename in title bar, just basename
Browse files Browse the repository at this point in the history
I'm not very good at recognizing the effects of my changes.
  • Loading branch information
leafstorm committed Aug 27, 2014
1 parent b4ec1e4 commit 7f5207c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jes/python/jes/gui/mainwindow.py
Original file line number Diff line number Diff line change
Expand Up @@ -778,7 +778,7 @@ def setFileName(self, filename):
if filename == '':
filename = UNTITLED_FILE_NAME

self.title = APPLICATION_TITLE % filename
self.title = APPLICATION_TITLE % os.path.basename(filename)

##########################################################################
# Function name: callTextEditFunction
Expand Down

0 comments on commit 7f5207c

Please sign in to comment.