Skip to content

Commit f3e5452

Browse files
authored
session selector width fix (#141)
1 parent d04d883 commit f3e5452

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tnz/zti.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1613,8 +1613,8 @@ def __display(self, window, showcursor):
16131613

16141614
if showcursor and rewrite:
16151615
sesx = col1 + maxcol
1616-
if sesx + 8 <= cols: # if fits
1617-
sesx = cols - 8
1616+
if sesx + 9 <= cols: # if fits
1617+
sesx = cols - 9
16181618
sessions = ati.ati.sessions.split()
16191619
sescnt = len(sessions)
16201620
curidx = self.__sessel_y

0 commit comments

Comments
 (0)