Skip to content

Commit

Permalink
Test release
Browse files Browse the repository at this point in the history
  • Loading branch information
Suraj-Yadav committed Jul 9, 2024
1 parent 4ab779b commit 0c9094c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/setup/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ runs:
shell: bash
run: cmake --build build --target package --config Release
- uses: actions/upload-artifact@v3
if: startsWith(github.ref, 'refs/tags/v')
# if: startsWith(github.ref, 'refs/tags/v')
with:
name: ${{ inputs.zip-output }}
path: build/comic_reader-*.zip
4 changes: 3 additions & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,9 @@ bool MyApp::OnInit() {
::wxInitAllImageHandlers();

auto frame = new MyFrame();
// frame->SetIcon(wxICON(app_icon));
#if defined(WIN32) || defined(_WIN32) || defined(__WIN32__) || defined(__NT__)
frame->SetIcon(wxICON(app_icon));
#endif
frame->Show(true);
frame->LoadComic();
frame->SetTitle(DEFAULT_FRAME_TITLE);
Expand Down

0 comments on commit 0c9094c

Please sign in to comment.