mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 06:58:11 +00:00
LibGUI: Paint a focus rect around the cursor index in TableView
This commit is contained in:
parent
5030f1ed4b
commit
c0076681ad
2 changed files with 11 additions and 2 deletions
|
@ -45,6 +45,7 @@ public:
|
|||
enum class CursorStyle {
|
||||
None,
|
||||
Item,
|
||||
Row,
|
||||
};
|
||||
|
||||
GridStyle grid_style() const { return m_grid_style; }
|
||||
|
@ -63,7 +64,7 @@ protected:
|
|||
|
||||
private:
|
||||
GridStyle m_grid_style { GridStyle::None };
|
||||
CursorStyle m_cursor_style { CursorStyle::None };
|
||||
CursorStyle m_cursor_style { CursorStyle::Row };
|
||||
};
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue