From ac398820d9761a4462cc509fac627e1b5a028bb6 Mon Sep 17 00:00:00 2001 From: Christian Svensson Date: Sat, 3 Oct 2020 21:12:39 +0200 Subject: [PATCH] make reload dialog text a bit clearer --- src/xschem.tcl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/xschem.tcl b/src/xschem.tcl index f739ec8a..6b17d666 100644 --- a/src/xschem.tcl +++ b/src/xschem.tcl @@ -3371,12 +3371,12 @@ font configure Underline-Font -underline true -size 24 toolbar_create FileMerge "xschem merge" "Merge File" .menubar.file.menu add command -label "Reload" -accelerator {Alt+S} \ -command { - if { [string compare [tk_messageBox -type okcancel -message {sure wanna reload?}] ok]==0 } { + if { [string compare [tk_messageBox -type okcancel -message {Are you sure you want to reload?}] ok]==0 } { xschem reload } } toolbar_create FileReload { - if { [string compare [tk_messageBox -type okcancel -message {sure wanna reload?}] ok]==0 } { + if { [string compare [tk_messageBox -type okcancel -message {Are you sure you want to reload?}] ok]==0 } { xschem reload } } "Reload File"