diff --git a/sys/windows/widgets/db_info_widget.php b/sys/windows/widgets/db_info_widget.php index bf96ed2..1ca31ba 100644 --- a/sys/windows/widgets/db_info_widget.php +++ b/sys/windows/widgets/db_info_widget.php @@ -268,7 +268,22 @@ class DB_Info_Widget extends GtkTable { ); $dialog->run(); $dialog->destroy(); + + return; } + + // Successful Connection? + // Tell the user! + $dialog = new GTKMessageDialog( + NULL, + Gtk::DIALOG_MODAL, + Gtk::MESSAGE_INFO, + Gtk::BUTTONS_OK, + "Successfully connected" + ); + + $dialog->run(); + $dialog->destroy(); } /**