We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5de06cc + c710e73 commit e9db519Copy full SHA for e9db519
paneline.cpp
@@ -13,9 +13,12 @@
13
// adds text to a line, adds to current style run if possible
14
void CPaneLine::AddStyle (const CPaneStyle style)
15
{
16
- // don't need to if no text in style (maybe)
17
- if (style.m_sText.empty ())
18
- return;
+ // This comment used to say that we didn't need to preserve textless colors,
+ // but it impacts the accurate preservation of data because servers may send
+ // color changes just before newlines which _should_ bleed over, but then don't.
19
+ // - Fiendish
20
+ //if (style.m_sText.empty ())
21
+ // return;
22
23
// if first style for line, must be a new style
24
if (m_vStyles.empty ())
0 commit comments