mirror of
https://github.com/codex-storage/deluge.git
synced 2025-02-17 05:47:50 +00:00
Quick and hacky fix for console event view crashing on long torrent names
This commit is contained in:
parent
0bf1379cc5
commit
7dd4645a7b
@ -85,7 +85,10 @@ class EventView(BaseMode):
|
||||
|
||||
elif i - self.offset < 0:
|
||||
continue
|
||||
self.add_string(i+1-self.offset,event)
|
||||
try:
|
||||
self.add_string(i+1-self.offset,event)
|
||||
except curses.error:
|
||||
pass #This'll just cut the line. Note: This seriously should be fixed in a better way
|
||||
else:
|
||||
self.add_string(1,"{!white,black,bold!}No events to show yet")
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user