[nostalgia/studio] Remove oxDebug line

This commit is contained in:
Gary Talent 2021-07-29 23:01:14 -05:00
parent b0f9218ba5
commit c7499f4241

View File

@ -27,7 +27,6 @@ ox::Result<ox::String> chooseDirectory() noexcept {
("_Open"), GTK_RESPONSE_ACCEPT, ("_Open"), GTK_RESPONSE_ACCEPT,
nullptr); nullptr);
const auto res = gtk_dialog_run(GTK_DIALOG(dialog)); const auto res = gtk_dialog_run(GTK_DIALOG(dialog));
oxDebug("gtk_dialog_run returned");
if (res == GTK_RESPONSE_ACCEPT) { if (res == GTK_RESPONSE_ACCEPT) {
auto chooser = GTK_FILE_CHOOSER(dialog); auto chooser = GTK_FILE_CHOOSER(dialog);
auto path = gtk_file_chooser_get_filename(chooser); auto path = gtk_file_chooser_get_filename(chooser);
@ -41,5 +40,4 @@ ox::Result<ox::String> chooseDirectory() noexcept {
} }
} }
#endif #endif