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

@ -43,9 +43,9 @@ class ServerStatus(QtGui.QVBoxLayout):
self.file_selection = file_selection
# server layout
self.status_image_stopped = QtGui.QImage('{0}/server_stopped.png'.format(common.onionshare_gui_dir))
self.status_image_working = QtGui.QImage('{0}/server_working.png'.format(common.onionshare_gui_dir))
self.status_image_started = QtGui.QImage('{0}/server_started.png'.format(common.onionshare_gui_dir))
self.status_image_stopped = QtGui.QImage('{0}/images/server_stopped.png'.format(common.onionshare_gui_dir))
self.status_image_working = QtGui.QImage('{0}/images/server_working.png'.format(common.onionshare_gui_dir))
self.status_image_started = QtGui.QImage('{0}/images/server_started.png'.format(common.onionshare_gui_dir))
self.status_image_label = QtGui.QLabel()
self.status_image_label.setFixedWidth(30)
self.start_server_button = QtGui.QPushButton(strings._('gui_start_server'))