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:
Vendored
+3
@@ -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 theme’s 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)
|
||||
|
||||
@@ -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;
|
||||
|
||||
|
||||
@@ -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;
|
||||
|
||||
|
||||
@@ -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)
|
||||
|
||||
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user