Skip to content

Commit

Permalink
Fixed connection indicator
Browse files Browse the repository at this point in the history
  • Loading branch information
Nighty3098 committed Jul 20, 2024
1 parent 965e2fc commit 775ef41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/CodeKeeper/mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -499,7 +499,7 @@ MainWindow::MainWindow(QWidget* parent) : QMainWindow(parent)

QTimer* connectionTimer = new QTimer(this);
connect(connectionTimer, &QTimer::timeout, this, &MainWindow::setConnectionStatus);
connectionTimer->start(100); // 1000ms = 1s
connectionTimer->start(1000); // 1000ms = 1s

} else {
sizeGrip2->hide();
Expand Down

0 comments on commit 775ef41

Please sign in to comment.