diff --git a/CHANGELOG.md b/CHANGELOG.md index c6bff61360..b198462e6a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ### Fixed - Images go under each other while editing in Fototoon #1552 - Missalignment of icons and text in Fototoon activity "clean all" button #1596 +- Extra icon rendering in QRCode activity #1193 ## [1.8.0] - 2024-04-10 ### Added diff --git a/activities/QRCode.activity/css/activity.css b/activities/QRCode.activity/css/activity.css index be37286734..e4720cad67 100644 --- a/activities/QRCode.activity/css/activity.css +++ b/activities/QRCode.activity/css/activity.css @@ -415,3 +415,9 @@ #qrtextdropdown option { font-size: 20px; } +select { + /* Hide the default arrow */ + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; +} \ No newline at end of file