From 84ceff7f5490ac5f7e1256a16d82b3b8520cb03a Mon Sep 17 00:00:00 2001 From: DH4 Date: Fri, 23 Jun 2017 10:46:32 -0500 Subject: Fixed Ctrl+End Hotkey --- mainwindow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mainwindow.py b/mainwindow.py index d21ca49..778e79a 100644 --- a/mainwindow.py +++ b/mainwindow.py @@ -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): -- cgit v1.2.3