Also fix plymouth text display in multi-screen configurations for previous themes:

futureprototype, joy, lines, moonlight, softwaves (fixes more cases of #956426).
This commit is contained in:
Aurélien COUDERC
2021-03-21 22:35:09 +01:00
parent 60adcb5606
commit 02ce0d7ecb
6 changed files with 8 additions and 5 deletions
+3
View File
@@ -5,6 +5,9 @@ desktop-base (11.0.3) UNRELEASED; urgency=medium
* Also remove futurePrototype alternative for desktop-theme in prerm
maintainer script. (Closes: #985267)
* Fix Name metadata for homeworld themes wallpaper.
* Also fix plymouth text display in multi-screen configurations for previous
themes: futureprototype, joy, lines, moonlight, softwaves (fixes more
cases of #956426).
-- Aurélien COUDERC <coucouf@debian.org> Wed, 17 Mar 2021 22:57:01 +0100
@@ -119,7 +119,7 @@ fun TextYOffset() {
#Debug("y = " + y);
text_height = first_line_height * 7.5;
min_height = Window.GetHeight();
min_height = window_max.height;
#Debug("text_height=" + text_height + "; min_height=" + min_height);
if (y + text_height > min_height)
+1 -1
View File
@@ -114,7 +114,7 @@ fun TextYOffset() {
text_height = first_line_height * 7.5;
min_height = Window.GetHeight();
min_height = window_max.height;
if (y + text_height > min_height)
y = min_height - text_height;
+1 -1
View File
@@ -210,7 +210,7 @@ fun TextYOffset() {
text_height = first_line_height * 7.5;
min_height = Window.GetHeight();
min_height = window_max.height;
if (y + text_height > min_height)
y = min_height - text_height;
+1 -1
View File
@@ -125,7 +125,7 @@ fun TextYOffset() {
#Debug("y = " + y);
text_height = first_line_height * 7.5;
min_height = Window.GetHeight();
min_height = window_max.height;
#Debug("text_height=" + text_height + "; min_height=" + min_height);
if (y + text_height > min_height)
+1 -1
View File
@@ -118,7 +118,7 @@ fun TextYOffset() {
#Debug("y = " + y);
text_height = first_line_height * 7.5;
min_height = Window.GetHeight();
min_height = window_max.height;
#Debug("text_height=" + text_height + "; min_height=" + min_height);
if (y + text_height > min_height)