Skip to content

Commit

Permalink
Merge pull request #48 from tseli0s/dialog-stuck-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tseli0s authored Nov 7, 2023
2 parents 3ab5cd2 + 9cd2b39 commit ecfbb96
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
- Increased shared file version to 2 (Output files may contain libnvdialog.so.2 now)
- Fixed libnotify not loading on Linux (See #44 for details)
- Fixed a bug where NvDialog would abort the entire process despite no failure happening.
- Fixed dialog not disappearing after pressing the accept button (See #42)

# Changelog -- 0.7.0
- Gtk dialogs will now be guaranteed to have their title set.
Expand Down
2 changes: 1 addition & 1 deletion src/backend/cocoa/nvdialog_dialog_box.m
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
void nvd_show_dialog_cocoa(NvdDialogBox *dialog)
{
[dialog->window_handle runModal];
[dialog->window_handle release];
[dialog->window_handle orderOut];
}

void *nvd_dialog_box_get_raw_cocoa(NvdDialogBox *dlg)
Expand Down

0 comments on commit ecfbb96

Please sign in to comment.