summaryrefslogtreecommitdiff
path: root/freefilesync/ffs_distro_fedora.patch
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2022-06-27 11:13:49 -0400
committerB. Stack <bgstack15@gmail.com>2022-06-27 11:13:49 -0400
commit83c49830d173c2f763960417221d9826ec4add94 (patch)
tree744d5d5a840cc83203450b6b4838596003249752 /freefilesync/ffs_distro_fedora.patch
parentmerge freefilesync-bump into freefilesync-el8 (diff)
downloadstackrpms-83c49830d173c2f763960417221d9826ec4add94.tar.gz
stackrpms-83c49830d173c2f763960417221d9826ec4add94.tar.bz2
stackrpms-83c49830d173c2f763960417221d9826ec4add94.zip
ffs 11.22 rpm rc1
Diffstat (limited to 'freefilesync/ffs_distro_fedora.patch')
-rw-r--r--freefilesync/ffs_distro_fedora.patch25
1 files changed, 25 insertions, 0 deletions
diff --git a/freefilesync/ffs_distro_fedora.patch b/freefilesync/ffs_distro_fedora.patch
index d54110b..17287ef 100644
--- a/freefilesync/ffs_distro_fedora.patch
+++ b/freefilesync/ffs_distro_fedora.patch
@@ -106,3 +106,28 @@ diff -Naur -x '*.orig' -x '*.rej' -x .git 11.21-0/FreeFileSync/Source/applicatio
&error); //GError** error
if (error)
throw SysError(formatGlibError("gtk_css_provider_load_from_path", error));
+Message: some random sloppiness with a missing graphical asset. It's not important to the application.
+--- 11.22-0/FreeFileSync/Source/ui/small_dlgs.cpp 2022-06-26 16:03:49.887270966 -0400
++++ 11.22-1/FreeFileSync/Source/ui/small_dlgs.cpp 2022-06-26 16:03:52.123298767 -0400
+@@ -140,9 +140,9 @@
+
+ wxImage::AddHandler(new wxJPEGHandler /*ownership passed*/); //activate support for .jpg files
+
+- wxImage animalImg(utfTo<wxString>(appendPath(getResourceDirPath(), Zstr("Animal.dat"))), wxBITMAP_TYPE_JPEG);
+- convertToVanillaImage(animalImg);
+- assert(animalImg.IsOk());
++ //wxImage animalImg(utfTo<wxString>(appendPath(getResourceDirPath(), Zstr("Animal.dat"))), wxBITMAP_TYPE_JPEG);
++ //convertToVanillaImage(animalImg);
++ //assert(animalImg.IsOk());
+
+ //--------------------------------------------------------------------------
+ //have animal + text match *final* dialog width
+@@ -152,7 +152,7 @@
+ const int imageWidth = (m_panelDonate->GetSize().GetWidth() - 5 - 5 /* grey border*/) / 2;
+ const int textWidth = m_panelDonate->GetSize().GetWidth() - 5 - 5 - imageWidth;
+
+- setImage(*m_bitmapAnimalSmall, shrinkImage(animalImg, imageWidth, -1 /*maxHeight*/));
++ //setImage(*m_bitmapAnimalSmall, shrinkImage(animalImg, imageWidth, -1 /*maxHeight*/));
+
+ m_staticTextDonate->Show();
+ m_staticTextDonate->Wrap(textWidth - 10 /*left gap*/); //wrap *after* changing font size
bgstack15