LibGUI: Make "Return" after tab return to original column in TableView

This commit is contained in:
Max Trussell
2021-06-13 11:46:08 -07:00
committed by GitHub
parent 364d728e66
commit b4da228ea5
2 changed files with 33 additions and 5 deletions

View File

@@ -98,6 +98,7 @@ protected:
private:
void layout_headers();
bool is_navigation(GUI::KeyEvent&);
RefPtr<HeaderView> m_column_header;
RefPtr<HeaderView> m_row_header;
@@ -110,6 +111,7 @@ private:
int m_vertical_padding { 8 };
int m_horizontal_padding { font().glyph_height() / 2 };
int m_tab_moves { 0 };
};
}