Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge #34

Merged
merged 4 commits into from
Apr 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .github/workflows/build_project.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
name: Build project
on: [push, pull_request, fork]

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: building
run: bash CodeKeeper/build.sh
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
Loading