Skip to content

Commit e31b532

Browse files
committed
adding space before session locked msg
1 parent c2f4206 commit e31b532

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pyradio/log.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,7 @@ def set_win_title(msg=None):
339339
# logger.debug('set_win_title(): d_msg = "' + d_msg + '"')
340340

341341
if token_id == 0 and Log.locked:
342-
d_msg += '(Session Locked)'
342+
d_msg += ' (Session Locked)'
343343

344344
if platform.lower().startswith('win'):
345345
# ctypes.windll.kernel32.SetConsoleTitleW('● ' + tokens[token_id] + d_msg)

pyradio/radio.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -790,7 +790,7 @@ def initHead(self, info):
790790
try:
791791
self.headWin.addstr(0, 0, info, curses.color_pair(4))
792792
if self._cnf.locked:
793-
self.headWin.addstr('[', curses.color_pair(5))
793+
self.headWin.addstr(' [', curses.color_pair(5))
794794
self.headWin.addstr('Session Locked', curses.color_pair(4))
795795
self.headWin.addstr('] ', curses.color_pair(5))
796796
else:

0 commit comments

Comments
 (0)