Merge branch 'release/0.1.2.016' into 'master'

Fixed: big icons for folders

See merge request SympatheticFire/linear-app-launcher!16
This commit is contained in:
Ray 2021-06-01 09:54:23 +00:00
commit a85699f751

View File

@ -224,17 +224,21 @@ namespace AppLauncher.Windows.Forms
{ {
get get
{ {
if (this.Parent == null) Control parentControl = this.Parent;
while (true)
{ {
return null; if (parentControl == null)
} {
return null;
}
if (this.Parent.GetType() != typeof(FlowLayoutPanel)) if (parentControl.GetType() == typeof(FlowLayoutPanel))
{ {
return null; return parentControl as FlowLayoutPanel;
} }
return this.Parent as FlowLayoutPanel; parentControl = parentControl.Parent;
}
} }
} }
@ -242,23 +246,21 @@ namespace AppLauncher.Windows.Forms
{ {
get get
{ {
FlowLayoutPanel layoutPanel = this.FlowLayoutPanel; Control parentControl = this.FlowLayoutPanel;
if (layoutPanel == null) while (true)
{ {
return null; if (parentControl == null)
} {
return null;
}
if (layoutPanel.Parent == null) if (parentControl.GetType() == typeof(MainForm))
{ {
return null; return parentControl as MainForm;
} }
if (layoutPanel.Parent.GetType() != typeof(MainForm)) parentControl = parentControl.Parent;
{
return null;
} }
return layoutPanel.Parent as MainForm;
} }
} }