mirror of
https://mirror.ghproxy.com/https://github.com/dexyfex/CodeWalker
synced 2024-11-22 15:02:54 +08:00
Theming for RPF Explorer bug fix for View menu
This commit is contained in:
parent
2e75c875bd
commit
5c991cd06a
@ -2758,9 +2758,13 @@ namespace CodeWalker
|
|||||||
|
|
||||||
MainListView.View = v;
|
MainListView.View = v;
|
||||||
|
|
||||||
foreach (ToolStripMenuItem menu in ViewMenu.DropDownItems)
|
foreach (var item in ViewMenu.DropDownItems)
|
||||||
{
|
{
|
||||||
menu.Checked = false;
|
var menu = item as ToolStripMenuItem;
|
||||||
|
if (menu != null)
|
||||||
|
{
|
||||||
|
menu.Checked = false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
switch (v)
|
switch (v)
|
||||||
|
Loading…
Reference in New Issue
Block a user