mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2025-06-24 16:21:12 +08:00
Cleanup.
This commit is contained in:
parent
ad8ffe7bc4
commit
d0457826a1
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,6 +1,7 @@
|
|||||||
# Ignore all the files, except the ones we expect.
|
# Ignore all the files, except the ones we expect.
|
||||||
# See https://jasonstitt.com/gitignore-whitelisting-patterns
|
# See https://jasonstitt.com/gitignore-whitelisting-patterns
|
||||||
*
|
*
|
||||||
|
!*/
|
||||||
|
|
||||||
# Allowed top-level files:
|
# Allowed top-level files:
|
||||||
!.clang-format
|
!.clang-format
|
||||||
|
@ -14,7 +14,6 @@
|
|||||||
<img src="https://codecov.io/gh/ArthurSonzogni/FTXUI/branch/master/graph/badge.svg?token=C41FdRpNVA"/>
|
<img src="https://codecov.io/gh/ArthurSonzogni/FTXUI/branch/master/graph/badge.svg?token=C41FdRpNVA"/>
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
|
|
||||||
<br/>
|
<br/>
|
||||||
<a href="https://arthursonzogni.github.io/FTXUI/">Documentation</a> ·
|
<a href="https://arthursonzogni.github.io/FTXUI/">Documentation</a> ·
|
||||||
<a href="https://github.com/ArthurSonzogni/FTXUI/issues">Report a Bug</a> ·
|
<a href="https://github.com/ArthurSonzogni/FTXUI/issues">Report a Bug</a> ·
|
||||||
|
@ -841,8 +841,8 @@ void ScreenInteractive::Draw(Component component) {
|
|||||||
|
|
||||||
// Set cursor position for user using tools to insert CJK characters.
|
// Set cursor position for user using tools to insert CJK characters.
|
||||||
{
|
{
|
||||||
int const dx = dimx_ - 1 - cursor_.x + int(dimx_ != terminal.dimx);
|
const int dx = dimx_ - 1 - cursor_.x + int(dimx_ != terminal.dimx);
|
||||||
int const dy = dimy_ - 1 - cursor_.y;
|
const int dy = dimy_ - 1 - cursor_.y;
|
||||||
|
|
||||||
set_cursor_position.clear();
|
set_cursor_position.clear();
|
||||||
reset_cursor_position.clear();
|
reset_cursor_position.clear();
|
||||||
|
Loading…
Reference in New Issue
Block a user