UI: properly initialize message view background
authorJan Vrany <jan.vrany@labware.com>
Thu, 05 Aug 2021 13:54:13 +0100
changeset 227 6ad3604ea78a
parent 226 810378570b9e
child 228 757414c2bd1e
UI: properly initialize message view background using list view's `#viewBackground` (and not `#background`, which is not a configured value but rather part of graphics context state)
VDBAbstractListApplication.st
--- a/VDBAbstractListApplication.st	Thu Aug 05 13:49:06 2021 +0100
+++ b/VDBAbstractListApplication.st	Thu Aug 05 13:54:13 2021 +0100
@@ -519,11 +519,12 @@
     internalMessageView hiddenOnRealize: true.
     internalMessageView layout: internalListViewLayout.
     internalMessageView sizeFixed:true.   
-    internalMessageView viewBackground: internalListView background.
-    internalMessageView font: internalListView font.
+    internalMessageView viewBackground: internalListView scrolledView viewBackground.
+    internalMessageView font: internalListView scrolledView font.
     internalMessageView layout: internalListViewLayout.
 
     "Created: / 08-06-2019 / 09:53:29 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 04-08-2021 / 00:52:45 / Jan Vrany <jan.vrany@labware.com>"
 ! !
 
 !VDBAbstractListApplication methodsFor:'menu'!