#704 wrap the upload filename label if too long

This commit is contained in:
Miguel Jacq 2018-09-19 10:57:12 +10:00
parent 6ac1ca3784
commit c08f6f3db1
No known key found for this signature in database
GPG Key ID: EEA4341C6D97A0B6

View File

@ -19,6 +19,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
"""
import os
import subprocess
import textwrap
from datetime import datetime
from PyQt5 import QtCore, QtWidgets, QtGui
@ -305,10 +306,7 @@ class Uploads(QtWidgets.QScrollArea):
try:
for upload in self.uploads.values():
for item in upload.files.values():
if item.filename_label_width > width:
item.filename_label.setText(item.filename[:25] + '[...]')
item.adjustSize()
if width > item.filename_label_width:
item.filename_label.setText(item.filename)
item.filename_label.setText(textwrap.fill(item.filename, 30))
item.adjustSize()
except:
pass