zeit: remove unnecessary calls

This commit is contained in:
blaze 2021-04-22 21:44:13 +03:00
parent 42655158fd
commit ce4f63dce4
No known key found for this signature in database
GPG Key ID: C4996C546950EAE4

View File

@ -222,7 +222,6 @@ void MainWindow::showTasks() {
setIcon(item, task->enabled);
ui->listWidget->addItem(item);
}
refreshActions(false);
}
void MainWindow::showVariables() {
@ -239,7 +238,6 @@ void MainWindow::showVariables() {
setIcon(item, var->enabled);
ui->listWidget->addItem(item);
}
refreshActions(false);
}
void MainWindow::showCommands() {
@ -251,7 +249,6 @@ void MainWindow::showCommands() {
c.description + tr("\nCommand: ") + c.command);
ui->listWidget->addItem(item);
}
refreshActions(false);
}
void MainWindow::addEntry() {