fixing isEmpty again. (#2591)

hopefully the last time.
This commit is contained in:
paxcut
2025-12-30 06:08:18 -07:00
committed by GitHub
parent 54d9f8ec5c
commit 5332a26294

View File

@@ -514,9 +514,7 @@ namespace hex::ui {
return false;
if (size == 0)
return true;
if (m_lines[0].empty())
return true;
return true;
return m_lines[0].empty();
}
bool TextEditor::EditorState::operator==(const EditorState &o) const {