fix(modulo): add wrapping to move bundle wizard page

This commit is contained in:
Federico Terzi 2021-11-05 21:09:25 +01:00
parent 2d84db409d
commit fcc0a4ee50
2 changed files with 2 additions and 2 deletions

View File

@ -708,7 +708,7 @@
<property name="window_extra_style"></property>
<property name="window_name"></property>
<property name="window_style"></property>
<property name="wrap">-1</property>
<property name="wrap">500</property>
</object>
</object>
<object class="sizeritem" expanded="1">

View File

@ -80,7 +80,7 @@ WizardFrame::WizardFrame( wxWindow* parent, wxWindowID id, const wxString& title
bSizer22->Add( 0, 20, 0, 0, 5 );
move_bundle_description = new wxStaticText( move_bundle_panel, wxID_ANY, wxT("Espanso is being run from outside the Applications directory, which prevents it from working correctly.\n\nPlease move the Espanso.app bundle inside your Applications folder and start it again.\n"), wxDefaultPosition, wxDefaultSize, 0 );
move_bundle_description->Wrap( -1 );
move_bundle_description->Wrap( 500 );
bSizer22->Add( move_bundle_description, 0, wxALL, 10 );