diff --git a/ks_includes/widgets/objectmap.py b/ks_includes/widgets/objectmap.py index b9ad10de..ab6551db 100644 --- a/ks_includes/widgets/objectmap.py +++ b/ks_includes/widgets/objectmap.py @@ -63,7 +63,7 @@ class ObjectMap(Gtk.DrawingArea): script = {"script": f"EXCLUDE_OBJECT NAME={name}"} self._screen._confirm_send_action( None, - _("Are you sure do you want to exclude the object?") + f"\n\n{name}", + _("Are you sure you want to exclude the object?") + f"\n\n{name}", "printer.gcode.script", script ) diff --git a/panels/exclude.py b/panels/exclude.py index 93c89acd..edadccdb 100644 --- a/panels/exclude.py +++ b/panels/exclude.py @@ -69,7 +69,7 @@ class Panel(ScreenPanel): script = {"script": f"EXCLUDE_OBJECT NAME={name}"} self._screen._confirm_send_action( widget, - _("Are you sure do you want to exclude the object?") + f"\n\n{name}", + _("Are you sure you want to exclude the object?") + f"\n\n{name}", "printer.gcode.script", script )