Ejemplo n.º 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()
Ejemplo n.º 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()
Ejemplo n.º 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()
Ejemplo n.º 4
0
 def MoveRecipientDownButton_clicked(self):
     utils.list_move_down(self.recipient_list, self.getCurrentRecipient())
     self.updateRecipientTable()
Ejemplo n.º 5
0
 def MoveRecipientDownButton_clicked(self):
     utils.list_move_down(self.recipient_list, self.getCurrentRecipient())
     self.updateRecipientTable()