From 6dadefe86fd7b012c69b153b7f40115531bd66e5 Mon Sep 17 00:00:00 2001 From: Matej Sochan <46938275+GitClo@users.noreply.github.com> Date: Wed, 19 Aug 2026 05:57:38 +0200 Subject: [PATCH] Bug/big frequency (#3247) * fix(ui): BigFrequency ignores set_dirty() when frequency is unchanged paint() gated its entire body behind a frequency-changed check (_previous_frequency cache), so calling set_dirty() without changing the value (e.g. forcing a repaint after a style/theme change) silently did nothing. Moved the change check into set() instead, so paint() always redraws when called and set_dirty() behaves as expected. * accidental deletion