@@ 1,4 1,4 @@
-// Copyright (c) 2017-2021, Mudita Sp. z.o.o. All rights reserved.
+// Copyright (c) 2017-2023, Mudita Sp. z.o.o. All rights reserved.
// For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md
#include "ApplicationMessages.hpp"
@@ 94,6 94,14 @@ namespace gui
return false;
};
+ smsBubble->dimensionChangedCallback = [this](gui::Item &, const BoundingBox &newDim) -> bool {
+ if (timeLabel != nullptr) {
+ timeLabel->setVisible(focus);
+ positionTimeLabel();
+ }
+ return true;
+ };
+
dimensionChangedCallback = [&](gui::Item &, const BoundingBox &newDim) -> bool {
body->setArea({0, 0, newDim.w, newDim.h});
@@ 41,6 41,7 @@
* Fixed notifications of unread SMS threads on the home screen
* Fixed false dotted notification above Calls app in case of answered call
* Fixed broken French translation on 'Configure passcode' screen in Onboarding
+* Fixed time disappearing in SMS thread
### Added