fix typo in dialog box (#618)
This commit is contained in:
parent
c523f51fd1
commit
242cb0cb58
|
@ -194,7 +194,7 @@ class DropDownMenu(Gtk.MenuButton):
|
|||
transient_for=parent,
|
||||
message_type=Gtk.MessageType.INFO,
|
||||
buttons=Gtk.ButtonsType.OK,
|
||||
text="Daemon succesfully removed"
|
||||
text="Daemon successfully removed"
|
||||
)
|
||||
dialog.format_secondary_text("The app will now close. Please reopen to apply changes")
|
||||
dialog.run()
|
||||
|
@ -299,7 +299,7 @@ class DaemonNotRunningView(Gtk.Box):
|
|||
transient_for=parent,
|
||||
message_type=Gtk.MessageType.INFO,
|
||||
buttons=Gtk.ButtonsType.OK,
|
||||
text="Daemon succesfully installed"
|
||||
text="Daemon successfully installed"
|
||||
)
|
||||
dialog.format_secondary_text("The app will now close. Please reopen to apply changes")
|
||||
dialog.run()
|
||||
|
@ -314,4 +314,4 @@ class DaemonNotRunningView(Gtk.Box):
|
|||
)
|
||||
dialog.format_secondary_text(f"The following error occured:\n{e}")
|
||||
dialog.run()
|
||||
dialog.destroy()
|
||||
dialog.destroy()
|
||||
|
|
Loading…
Reference in New Issue