sort the list of filenames being shared

This commit is contained in:
Micah Lee 2014-08-28 16:26:56 -07:00
parent 9ed128938f
commit 36914114f9
2 changed files with 3 additions and 0 deletions

View file

@ -12,6 +12,7 @@ class FileList(QtGui.QListWidget):
super(FileList, self).__init__(parent)
self.setAcceptDrops(True)
self.setIconSize(QtCore.QSize(32, 32))
self.setSortingEnabled(True)
# drag and drop label
self.drop_label = QtGui.QLabel(QtCore.QString(strings._('gui_drag_and_drop')), parent=self)