moved images to subfolder (#126)

This commit is contained in:
Micah Lee 2014-09-03 17:36:03 -07:00
parent bfcd5190bd
commit 8d01ad7ec6
11 changed files with 27 additions and 25 deletions

View file

@ -36,7 +36,7 @@ class FileList(QtGui.QListWidget):
# drag and drop label
self.drop_label = QtGui.QLabel(QtCore.QString(strings._('gui_drag_and_drop')), parent=self)
self.drop_label.setAlignment(QtCore.Qt.AlignCenter)
self.drop_label.setStyleSheet('background: url({0}/drop_files.png) no-repeat center center; color: #999999;'.format(common.onionshare_gui_dir))
self.drop_label.setStyleSheet('background: url({0}/images/drop_files.png) no-repeat center center; color: #999999;'.format(common.onionshare_gui_dir))
self.drop_label.hide()
self.filenames = []