Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
crsib committed Feb 21, 2024
1 parent ebbc7d8 commit 8731a86
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,8 @@ SelectSaveLocationDialog::SelectSaveLocationDialog(wxWindow* parent)
auto saveToCloudButton =
safenew wxButton(this, wxID_ANY, XXO("Save to &cloud").Translation());

saveToCloudButton->SetFont(descriptionFont);

auto saveToComputerImage =
safenew wxStaticBitmap(this, wxID_ANY, *bin2c_SaveLocally_png);

Expand All @@ -72,6 +74,8 @@ SelectSaveLocationDialog::SelectSaveLocationDialog(wxWindow* parent)
auto saveToComputerButton =
safenew wxButton(this, wxID_ANY, XXO("Save to &computer").Translation());

saveToComputerButton->SetFont(descriptionFont);

auto rememberChoiceCheckbox = safenew wxCheckBox(
this, wxID_ANY,
XO("&Remember my choice and don't show again").Translation());
Expand Down Expand Up @@ -109,7 +113,7 @@ SelectSaveLocationDialog::SelectSaveLocationDialog(wxWindow* parent)
saveToComputerButton,
wxSizerFlags {}.Border(wxTOP | wxBOTTOM | wxLEFT, 16));

topSizer->Add(computerSizer, wxSizerFlags {}.Expand());
topSizer->Add(computerSizer, wxSizerFlags {}.Expand().Border(wxLEFT, 8));

sizer->Add(topSizer, wxSizerFlags {}.Expand().Border(wxALL, 16));

Expand Down
Loading

0 comments on commit 8731a86

Please sign in to comment.