* Display total number of thumbnail images in title bar.
authorUrban Wallasch <urban.wallasch@freenet.de>
Mon, 3 May 2021 20:41:24 +0000 (22:41 +0200)
committerUrban Wallasch <urban.wallasch@freenet.de>
Mon, 3 May 2021 20:41:24 +0000 (22:41 +0200)
ffpreview.py

index cf8b0cf2aaad71295073297c47e7ac4922cfd0d8..71a4a08ef5797d905f39e89f48923ad0811071df 100755 (executable)
@@ -415,6 +415,7 @@ try:
             tlabel = Label(scrollframe, text=s2hms(th[2]), image=thumb, compound='top', relief='solid')
             tlabel.bind('<Button-1>', click_thumb)
             tlabels.append(tlabel)
+        root.title(root.title() + ' [%d]' % thinfo["count"])
 except Exception as e:
     eprint(str(e))
     exit(2)