Beispiel #1
0
    def MoveFileDownButton_clicked(self):
        filename = self.currentFilename()
        if filename is None:
            return

        utils.list_move_down(self.file_list, filename, self.__compareFilenames)
        self.updateUi()
Beispiel #2
0
    def MoveFileDownButton_clicked(self):
        filename = self.currentFilename()
        if filename is None:
            return

        utils.list_move_down(self.file_list, filename, self.__compareFilenames)
        self.updateUi()
Beispiel #3
0
 def moveDownPushButton_clicked(self):
     try:
         name = self.recipientListView.selectedItem().name
     except AttributeError:
         return
     else:
         utils.list_move_down(self.recipient_list, name)
         self.updateRecipientList()
Beispiel #4
0
 def MoveRecipientDownButton_clicked(self):
     utils.list_move_down(self.recipient_list, self.getCurrentRecipient())
     self.updateRecipientTable()
Beispiel #5
0
 def MoveRecipientDownButton_clicked(self):
     utils.list_move_down(self.recipient_list, self.getCurrentRecipient())
     self.updateRecipientTable()