Fixed Ctrl+End Hotkey

This commit is contained in:
DH4 2017-06-23 10:46:32 -05:00
parent 8c9914850e
commit 84ceff7f54
1 changed files with 1 additions and 1 deletions

View File

@ -526,7 +526,7 @@ class MainWindow(QtGui.QMainWindow):
def moveComponentBottom(self):
componentList = self.window.listWidget_componentList
row = len(componentList)-1
row = len(componentList)-componentList.currentRow()-1
self.moveComponent(row)
def dragComponent(self, event):