diff options
author | flow <flowlnlnln@gmail.com> | 2022-10-11 14:19:29 -0300 |
---|---|---|
committer | flow <flowlnlnln@gmail.com> | 2022-10-11 15:51:54 -0300 |
commit | d194b02e28132df3ea3da961299e969614b8a185 (patch) | |
tree | d4c8afbd6d595fc30972b72e223abd2544c7ac55 /launcher/ui/widgets/ProjectDescriptionPage.cpp | |
parent | d7992ab29d07c6d26377f6db1cfca6059aace471 (diff) | |
download | PrismLauncher-d194b02e28132df3ea3da961299e969614b8a185.tar.gz PrismLauncher-d194b02e28132df3ea3da961299e969614b8a185.tar.bz2 PrismLauncher-d194b02e28132df3ea3da961299e969614b8a185.zip |
fix: prevent images overriding content when changing pages
Signed-off-by: flow <flowlnlnln@gmail.com>
Diffstat (limited to 'launcher/ui/widgets/ProjectDescriptionPage.cpp')
-rw-r--r-- | launcher/ui/widgets/ProjectDescriptionPage.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/launcher/ui/widgets/ProjectDescriptionPage.cpp b/launcher/ui/widgets/ProjectDescriptionPage.cpp index 2e6f6d97..c7e79a17 100644 --- a/launcher/ui/widgets/ProjectDescriptionPage.cpp +++ b/launcher/ui/widgets/ProjectDescriptionPage.cpp @@ -15,3 +15,9 @@ void ProjectDescriptionPage::setMetaEntry(QString entry) if (m_image_text_object) m_image_text_object->setMetaEntry(entry); } + +void ProjectDescriptionPage::flush() +{ + if (m_image_text_object) + m_image_text_object->flush(); +} |