1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 10:38:11 +00:00

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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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 };
};
}