Kaydet (Commit) a62dec01 authored tarafından Szymon Kłos's avatar Szymon Kłos

don't enable password control, when whole frame is inactive

Change-Id: I165f08a3709b1d32ddab4632342d21b43d3f8ff1
üst 87cf343f
......@@ -158,7 +158,7 @@ void PlaceEditDialog::ShowPasswordControl( bool bShow )
IMPL_LINK( PlaceEditDialog, ToggledPassHdl, CheckBox*, pCheckBox )
{
bool bChecked = pCheckBox->IsChecked();
bool bChecked = pCheckBox->IsEnabled() && pCheckBox->IsChecked();
m_pEDPassword->Enable( bChecked );
m_pFTPasswordLabel->Enable( bChecked );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment