summaryrefslogtreecommitdiff
path: root/freefilesync/debian
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2023-06-20 09:19:11 -0400
committerB. Stack <bgstack15@gmail.com>2023-06-20 09:19:11 -0400
commit6a830379c8b2750e34387db8a48d1d20d180b22a (patch)
treefa3dd3d6960e66b5375443a47a776b04e3a909a5 /freefilesync/debian
parentffs 12.4 rc1 (diff)
downloadstackrpms-6a830379c8b2750e34387db8a48d1d20d180b22a.tar.gz
stackrpms-6a830379c8b2750e34387db8a48d1d20d180b22a.tar.bz2
stackrpms-6a830379c8b2750e34387db8a48d1d20d180b22a.zip
defuzz traditional view patch
Diffstat (limited to 'freefilesync/debian')
-rw-r--r--freefilesync/debian/patches/ffs_traditional_view.patch10
1 files changed, 5 insertions, 5 deletions
diff --git a/freefilesync/debian/patches/ffs_traditional_view.patch b/freefilesync/debian/patches/ffs_traditional_view.patch
index fe04e26..bbb36f9 100644
--- a/freefilesync/debian/patches/ffs_traditional_view.patch
+++ b/freefilesync/debian/patches/ffs_traditional_view.patch
@@ -251,15 +251,15 @@ Message: restore a traditional view to FreeFileSync, and disable "welcomeShownVe
const ItemPathFormat defaultItemPathFormatLeftGrid = ItemPathFormat::relative;
--- a/FreeFileSync/Source/ui/main_dlg.cpp
+++ b/FreeFileSync/Source/ui/main_dlg.cpp
-@@ -448,7 +448,6 @@ void MainDialog::create(const Zstring& g
+@@ -449,7 +449,6 @@ void MainDialog::create(const Zstring& g
- //showAboutDialog(mainDlg); => dialog centered incorrectly (Centos), or hidden behind main dialog (Lubuntu) https://freefilesync.org/forum/viewtopic.php?t=10246
+ //showAboutDialog(mainDlg); => dialog centered incorrectly (Centos)
//mainDlg->CallAfter([mainDlg] { showAboutDialog(mainDlg); }); => dialog centered incorrectly (Windows, Centos)
- mainDlg->guiQueue_.processAsync([] {}, [mainDlg]() { showAboutDialog(mainDlg); }); //apparently oh-kay?
}
-@@ -2777,6 +2776,8 @@ void MainDialog::onGridLabelContextRim(G
+@@ -2780,6 +2779,8 @@ void MainDialog::onGridLabelContextRim(G
addFormatEntry(_("Item name" ), ItemPathFormat::name);
addFormatEntry(_("Relative path"), ItemPathFormat::relative);
addFormatEntry(_("Full path" ), ItemPathFormat::full);
@@ -270,7 +270,7 @@ Message: restore a traditional view to FreeFileSync, and disable "welcomeShownVe
auto setIconSize = [&](GridIconSize sz, bool showIcons)
--- a/FreeFileSync/Source/config.cpp
+++ b/FreeFileSync/Source/config.cpp
-@@ -495,6 +495,12 @@ void writeText(const ItemPathFormat& val
+@@ -477,6 +477,12 @@ void writeText(const ItemPathFormat& val
case ItemPathFormat::full:
output = "Full";
break;
@@ -283,7 +283,7 @@ Message: restore a traditional view to FreeFileSync, and disable "welcomeShownVe
}
}
-@@ -508,6 +514,10 @@ bool readText(const std::string& input,
+@@ -490,6 +496,10 @@ bool readText(const std::string& input,
value = ItemPathFormat::relative;
else if (tmp == "Full")
value = ItemPathFormat::full;
bgstack15