From ebb6dd4449f0d2470db492028a3100c537a2ce71 Mon Sep 17 00:00:00 2001 From: Simon Hausmann Date: Tue, 19 Apr 2022 16:58:06 +0200 Subject: [PATCH] janitor: Fix typo --- examples/printerdemo/ui/ink_page.slint | 6 +++--- examples/printerdemo_mcu/ui/ink_page.slint | 6 +++--- examples/printerdemo_old/ui/printerdemo.slint | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/examples/printerdemo/ui/ink_page.slint b/examples/printerdemo/ui/ink_page.slint index 5c782b307..6a2734d52 100644 --- a/examples/printerdemo/ui/ink_page.slint +++ b/examples/printerdemo/ui/ink_page.slint @@ -37,15 +37,15 @@ export InkPage := Page { y: -parent.y; } states [ - innactive when !root.page-visible : { + inactive when !root.page-visible : { height: 0; } ] transitions [ - out innactive : { + out inactive : { animate height { duration: 750ms; easing: ease-in-out; } } - in innactive : { + in inactive : { animate height { duration: 200ms; easing: ease-in; } } ] diff --git a/examples/printerdemo_mcu/ui/ink_page.slint b/examples/printerdemo_mcu/ui/ink_page.slint index 2236c3f94..7d3699a86 100644 --- a/examples/printerdemo_mcu/ui/ink_page.slint +++ b/examples/printerdemo_mcu/ui/ink_page.slint @@ -37,19 +37,19 @@ export InkPage := Page { y: -parent.y; } states [ - innactive when !root.page-visible : { + inactive when !root.page-visible : { height: 0; } ] transitions [ - out innactive : { + out inactive : { animate height { duration: 750ms; delay: 100ms; easing: ease-in-out; } } - in innactive : { + in inactive : { animate height { duration: 200ms; easing: ease-in; } } ] diff --git a/examples/printerdemo_old/ui/printerdemo.slint b/examples/printerdemo_old/ui/printerdemo.slint index 47823455f..856778ca2 100644 --- a/examples/printerdemo_old/ui/printerdemo.slint +++ b/examples/printerdemo_old/ui/printerdemo.slint @@ -200,12 +200,12 @@ MainWindow := Window { y: parent.height - self.height; background: color-info.color; states [ - innactive when root.active-page != 0 : { + inactive when root.active-page != 0 : { height: 0phx; } ] transitions [ - out innactive : { + out inactive : { animate height { duration: 750ms; easing: ease-in-out; } } ]