Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Extended fonts not applied to first line of buffer #1391

Closed
Maximus5 opened this issue Jul 31, 2015 · 1 comment
Closed

Extended fonts not applied to first line of buffer #1391

Maximus5 opened this issue Jul 31, 2015 · 1 comment

Comments

@Maximus5
Copy link
Owner

Originally reported on Google Code with ID 1391

OS version: Win7   SP1   x64
ConEmu version: 131211
Far version (if you are using Far Manager): None

*Bug description*
Extended fonts not applied to first line of buffer.

*Steps to reproduction*
1. Start ConEmu console
2. Enable "Extend fonts" option in Settings
3. Output ANSI sequence to produce extended font
4. Scroll window so extended font is at the top of the buffer

Patch to fix the problem:

Index: RealBuffer.cpp
===================================================================
--- RealBuffer.cpp  (revision 1551)
+++ RealBuffer.cpp  (working copy)
@@ -4727,7 +4727,7 @@
                    break;
                }

-               if (nY == 1) lcaTable = lcaTableExt;
+               if (nY == nExtendStartsY) lcaTable = lcaTableExt;

                // ╥σΩ±≥
                memmove(pszDst, pszSrc, cbLineSize);

Reported by rick.sladkey on 2013-12-12 17:18:11

@Maximus5
Copy link
Owner Author

Thx 4 patch

Reported by ConEmu.Maximus5 on 2013-12-15 23:38:55

  • Status changed: Fixed

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant