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,10 +2758,14 @@ namespace CodeWalker
|
||||
|
||||
MainListView.View = v;
|
||||
|
||||
foreach (ToolStripMenuItem menu in ViewMenu.DropDownItems)
|
||||
foreach (var item in ViewMenu.DropDownItems)
|
||||
{
|
||||
var menu = item as ToolStripMenuItem;
|
||||
if (menu != null)
|
||||
{
|
||||
menu.Checked = false;
|
||||
}
|
||||
}
|
||||
|
||||
switch (v)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user