Joedmin
Joedmin
I have Windows 10 Home edition, version 20H2, 64 bit. I noticed, that it doesn't deselect apps now, weird. But it still minimalizes the full-screen apps (borderless full-screen), for example,...
Sorry to bother you, but it's now deselecting apps, for example, the Mozilla Firefox: 
I am also up for this feature!
I can see even the predefined packs multiple times (not only twice)
Folder exists only once in the vault  Besides that I've noticed that the folder is sometimes just an archive (`.zip`) and sometimes even an unzipped version. I tried deletin...
I found the cause - it's the workspace plugin. I was switching workspaces at the moment and the Iconize plugin displayed the following  and after that I noticed that...
Also, when I try to remove the duplicated icon pack, it removes them all, not just the single "clone", so I have to reinstall the pack once again  
Hi, I need some help with using the `MudChipSet` in the v7.0.0. How are you supposed to bind the `SellectedValues`? I see that it wants to have an `IReadOnlyCollection` instead...
Of course! I use `MudChipSet` to display select enum flags that I then use. ```cshtml @foreach (var value in Enum.GetValues()) { @value.Humanize(LetterCasing.Sentence) } ``` and ```cs public List SelectedFlags {...
Okay, thank you for your answer. But what if I want to be able to select idividual items **via** the ChipSet (ie mouse click some items) and not programatically (like...