feat(modulo): improve Wizard label

This commit is contained in:
Federico Terzi 2021-06-25 17:09:37 +02:00
parent e992fe4f0c
commit f948dff26f
2 changed files with 2 additions and 2 deletions

View File

@ -959,7 +959,7 @@
<property name="gripper">0</property> <property name="gripper">0</property>
<property name="hidden">0</property> <property name="hidden">0</property>
<property name="id">wxID_ANY</property> <property name="id">wxID_ANY</property>
<property name="label">A legacy espanso process has been detected and prevents the new version from working correctly.&#x0A;&#x0A;Please terminate and uninstall the old espanso version to proceed.&#x0A;&#x0A;For more information, see: </property> <property name="label">A legacy espanso process has been detected and prevents the new version from working correctly.&#x0A;&#x0A;Please terminate and uninstall the old espanso version to proceed.&#x0A;&#x0A;If you already uninstalled the previous version, you might need to restart your computer for changes to be detected.&#x0A;&#x0A;For more information, see: </property>
<property name="markup">0</property> <property name="markup">0</property>
<property name="max_size"></property> <property name="max_size"></property>
<property name="maximize_button">0</property> <property name="maximize_button">0</property>

View File

@ -111,7 +111,7 @@ WizardFrame::WizardFrame( wxWindow* parent, wxWindowID id, const wxString& title
bSizer21->Add( 0, 20, 0, 0, 5 ); bSizer21->Add( 0, 20, 0, 0, 5 );
legacy_version_description = new wxStaticText( legacy_version_panel, wxID_ANY, wxT("A legacy espanso process has been detected and prevents the new version from working correctly.\n\nPlease terminate and uninstall the old espanso version to proceed.\n\nFor more information, see: "), wxDefaultPosition, wxDefaultSize, 0 ); legacy_version_description = new wxStaticText( legacy_version_panel, wxID_ANY, wxT("A legacy espanso process has been detected and prevents the new version from working correctly.\n\nPlease terminate and uninstall the old espanso version to proceed.\n\nIf you already uninstalled the previous version, you might need to restart your computer for changes to be detected.\n\nFor more information, see: "), wxDefaultPosition, wxDefaultSize, 0 );
legacy_version_description->Wrap( 500 ); legacy_version_description->Wrap( 500 );
bSizer21->Add( legacy_version_description, 0, wxLEFT|wxRIGHT|wxTOP, 10 ); bSizer21->Add( legacy_version_description, 0, wxLEFT|wxRIGHT|wxTOP, 10 );