Skip to content

Commit

Permalink
Update window titles
Browse files Browse the repository at this point in the history
Signed-off-by: Stephen Rhodes <[email protected]>
  • Loading branch information
sr99622 committed May 25, 2021
1 parent d344b45 commit 89162b7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent)
int gpu_id = 0;
model->initialize(cfg_file, weights_file, names_file, gpu_id);

setWindowTitle("Play Qt");
test();
}

Expand Down
2 changes: 1 addition & 1 deletion waitbox.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ WaitBox::WaitBox(QMainWindow *parent) : QDialog(parent)
layout->addWidget(text, 1, 0, 1, 1, Qt::AlignCenter);
setLayout(layout);
setMinimumSize(QSize(300, 200));
setWindowTitle("Dark Viewer");
setWindowTitle("Darknet Model Loader");
setModal(true);
movie->start();
}

0 comments on commit 89162b7

Please sign in to comment.