Skip to content

Commit

Permalink
fixed crash when displaying search results dialog (#2398, #2399)
Browse files Browse the repository at this point in the history
  • Loading branch information
giuspen committed Dec 13, 2023
1 parent 7e485c9 commit 75685c2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ct/ct_dialogs.h
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,8 @@ class CtMatchDialogStore : public Gtk::ListStore
add(line_content);
}
} columns;
std::array<int, 2> dlg_size;
std::array<int, 2> dlg_pos;
std::array<int, 2> dlg_size{0,0};
std::array<int, 2> dlg_pos{0,0};
std::string saved_path;

static Glib::RefPtr<CtMatchDialogStore> create(const size_t maxMatchesInPage);
Expand Down

0 comments on commit 75685c2

Please sign in to comment.