From ad57a2f18b4915ba57b9c9e1e9c0ddd6ff4cfe2a Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sat, 18 Jul 2020 18:10:48 +0200 Subject: [PATCH] FileManager: Use new TextBox::DisplayOnly mode in the properties dialog Use this instead of disabling the name TextBox. This looks a little bit nicer than the grayed-out appearance. :^) --- Applications/FileManager/PropertiesDialog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Applications/FileManager/PropertiesDialog.cpp b/Applications/FileManager/PropertiesDialog.cpp index f56a2bbc85b..47be60aa4e8 100644 --- a/Applications/FileManager/PropertiesDialog.cpp +++ b/Applications/FileManager/PropertiesDialog.cpp @@ -80,7 +80,7 @@ PropertiesDialog::PropertiesDialog(GUI::FileSystemModel& model, String path, boo m_name_box->set_size_policy(GUI::SizePolicy::Fill, GUI::SizePolicy::Fixed); m_name_box->set_preferred_size({ 0, 22 }); m_name_box->set_text(m_name); - m_name_box->set_enabled(!disable_rename); + m_name_box->set_mode(disable_rename ? GUI::TextBox::Mode::DisplayOnly : GUI::TextBox::Mode::Editable); m_name_box->on_change = [&]() { m_name_dirty = m_name != m_name_box->text(); m_apply_button->set_enabled(m_name_dirty || m_permissions_dirty);