Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Gtk4: fix tests #811

Draft
wants to merge 17 commits into
base: jeremypw/gtk4
Choose a base branch
from
Draft
Prev Previous commit
Next Next commit
Register dbus add message
  • Loading branch information
jeremypw committed Nov 24, 2024
commit 5974a93ad5e94a0408cd222b50558b9696c8756f
6 changes: 3 additions & 3 deletions src/Application.vala
Original file line number Diff line number Diff line change
Expand Up @@ -181,9 +181,9 @@ stdout.printf (" return -1 from handle_local_options \n");
}

protected override bool dbus_register (DBusConnection connection, string object_path) throws Error {
if (is_testing) {
return true;
}
// if (is_testing) {
// return true;
// }
base.dbus_register (connection, object_path);

var dbus = new DBus ();
Expand Down
2 changes: 1 addition & 1 deletion src/Widgets/TerminalWidget.vala
Original file line number Diff line number Diff line change
Expand Up @@ -692,7 +692,7 @@ namespace Terminal {
public void active_shell (string dir = GLib.Environment.get_current_dir ()) {
string shell = Application.settings.get_string ("shell");
string?[] envv = null;

stdout.printf (" Active shell");
if (shell == "") {
shell = Vte.get_user_shell ();
if (shell == "") {
Expand Down
Loading