notification daemon
git clone https://git.lucas.co/cce-notifier.git
chore: display_list signature gains (size, scale) (cce-ui Phase 6)
Co-Authored-By: Claude Fable 5 <[email protected]>
Claude-Session: https://claude.ai/code/session_016MjP3pGQEDLkJbV5WEmYBe
src/main.rs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/main.rs b/src/main.rs
index adfa7f0..b8a9d7e 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -161,7 +161,7 @@ impl Application for NotifierApp {
/// The whole frame as one display list (Phase 6): the green accent border plus the three
/// text lines. Coordinates are logical px; the engine applies HiDPI scale and shapes the
/// text through its shared buffer cache.
- fn display_list(&mut self) -> Option<cce_ui::scene::paint::DisplayList> {
+ fn display_list(&mut self, _size: cce_ui::engine::LogicalSize, _scale: f64) -> Option<cce_ui::scene::paint::DisplayList> {
use cce_ui::scene::layout::Rect;
use cce_ui::scene::paint::PaintCtx;
let mut pc = PaintCtx::new();