summaryrefslogtreecommitdiff
path: root/Libraries/LibVT/Line.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Libraries/LibVT/Line.cpp')
-rw-r--r--Libraries/LibVT/Line.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Libraries/LibVT/Line.cpp b/Libraries/LibVT/Line.cpp
index 9b1e42a58b..56f776e9cb 100644
--- a/Libraries/LibVT/Line.cpp
+++ b/Libraries/LibVT/Line.cpp
@@ -104,9 +104,9 @@ bool Line::has_only_one_background_color() const
if (!m_length)
return true;
// FIXME: Cache this result?
- auto color = m_attributes[0].background_color;
+ auto color = m_attributes[0].effective_background_color();
for (size_t i = 1; i < m_length; ++i) {
- if (m_attributes[i].background_color != color)
+ if (m_attributes[i].effective_background_color() != color)
return false;
}
return true;