diff options
author | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 17:23:19 +0200 |
---|---|---|
committer | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 17:23:19 +0200 |
commit | 0887aee8c54d0ed51bb2031431e2bcdafebb4c6e (patch) | |
tree | 69537ceb9787bb25ac363cc4e6cdaf0804d78363 /ui/sync_cfg.cpp | |
parent | 5.12 (diff) | |
download | FreeFileSync-0887aee8c54d0ed51bb2031431e2bcdafebb4c6e.tar.gz FreeFileSync-0887aee8c54d0ed51bb2031431e2bcdafebb4c6e.tar.bz2 FreeFileSync-0887aee8c54d0ed51bb2031431e2bcdafebb4c6e.zip |
5.13
Diffstat (limited to 'ui/sync_cfg.cpp')
-rw-r--r-- | ui/sync_cfg.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/ui/sync_cfg.cpp b/ui/sync_cfg.cpp index 3894eb24..83743e0d 100644 --- a/ui/sync_cfg.cpp +++ b/ui/sync_cfg.cpp @@ -13,6 +13,7 @@ #include <wx+/no_flicker.h> #include <wx+/choice_enum.h> #include <wx+/image_tools.h> +#include <wx+/font_size.h> #include "gui_generated.h" #include "exec_finished_box.h" #include "dir_name.h" @@ -228,6 +229,13 @@ SyncCfgDialog::SyncCfgDialog(wxWindow* parent, m_bitmapConflict ->SetBitmap(mirrorIfRtl(greyScale(GlobalResources::getImage(L"conflict" )))); m_bitmapDatabase ->SetBitmap(GlobalResources::getImage(L"database")); + setRelativeFontSize(*m_toggleBtnAutomatic, 1.25); + setRelativeFontSize(*m_toggleBtnMirror, 1.25); + setRelativeFontSize(*m_toggleBtnUpdate, 1.25); + setRelativeFontSize(*m_toggleBtnCustom, 1.25); + setRelativeFontSize(*m_staticTextHeaderCategory, 0.90); + setRelativeFontSize(*m_staticTextHeaderAction, 0.90); + enumVersioningStyle. add(VER_STYLE_ADD_TIMESTAMP, _("Versioning"), _("Append a timestamp to each file name")). add(VER_STYLE_REPLACE, _("Replace"), _("Move files and replace if existing")); |