Skip to content

Commit cbb6cd5

Browse files
committed
Fixed bug in empty text display
1 parent 4d72476 commit cbb6cd5

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/main/widgets/simple/Edit.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -533,8 +533,7 @@ namespace lsp
533533
bool use_empty_text =
534534
(sText.is_empty()) &&
535535
(!sEmptyText.is_empty()) &&
536-
(!sCursor.visible()) &&
537-
(!sCursor.shining());
536+
(!sCursor.visible());
538537
prop::String *src_text = (use_empty_text) ? &sEmptyText : &sText;
539538

540539
const style::EditColors *colors = select_colors();

0 commit comments

Comments
 (0)