1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-16 16:24:59 +00:00

LibGUI: Add a mode where GTableModel automatically activates on selection.

This commit is contained in:
Andreas Kling 2019-03-15 16:25:30 +01:00
parent 84f5312dc2
commit c1f2f5a153
4 changed files with 20 additions and 1 deletions

View file

@ -7,6 +7,7 @@
IRCClientWindowListModel::IRCClientWindowListModel(IRCClient& client)
: m_client(client)
{
set_activates_on_selection(true);
}
IRCClientWindowListModel::~IRCClientWindowListModel()