mirror of
https://mirror.ghproxy.com/https://github.com/dexyfex/CodeWalker
synced 2026-05-14 05:34:47 +08:00
Theming for RPF Explorer bug fix for View menu
This commit is contained in:
+6
-2
@@ -2758,9 +2758,13 @@ namespace CodeWalker
|
||||
|
||||
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)
|
||||
|
||||
Reference in New Issue
Block a user