Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Nighty3098 committed Apr 19, 2024
1 parent 43b5d93 commit 7d7eec7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/CodeKeeper/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
# ----------------------------------------------------------------------------

*~
*.db
*.autosave
*.a
*.core
Expand Down
2 changes: 1 addition & 1 deletion src/CodeKeeper/keeperFunc/projectsFunc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ void MainWindow::openProject(QListWidget *listWidget, QListWidgetItem *item)
QDialog dialog(this);
dialog.setFixedSize(400, 460);
dialog.setWindowTitle(tr("Edit project"));
dialog.setWindowFlags(Qt::Window | Qt::FramelessWindowHint);
dialog->setWindowFlags(windowFlags() | Qt::FramelessWindowHint);

QString data = item->text();
QStringList splitData = data.split("\n");
Expand Down

0 comments on commit 7d7eec7

Please sign in to comment.