You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
357 B

#include "dialogs.hpp"
Dialog::Message::Message(const std::string &text, std::function<void()> &&on_cancel, bool show_progress_bar) : Gtk::Window(Gtk::WindowType::WINDOW_POPUP) {}
void Dialog::Message::set_fraction(double fraction) {}
bool Dialog::Message::on_delete_event(GdkEventAny *event) {
return true;
}
5 years ago
void Dialog::init_module(py::module &) {}