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

Applications: Use placeholders in TextBoxes where applicable

This commit is contained in:
Peter Elliott 2020-09-20 12:43:44 -07:00 committed by Andreas Kling
parent fa96e57c15
commit 7907df7617
4 changed files with 4 additions and 15 deletions

View file

@ -202,6 +202,7 @@ IRCWindow::IRCWindow(IRCClient& client, void* owner, Type type, const String& na
m_text_box->clear();
};
m_text_box->set_history_enabled(true);
m_text_box->set_placeholder("Message");
m_client->register_subwindow(*this);
}