Home › Forums › System Ninja Support › Bug found
- This topic has 84 replies, 7 voices, and was last updated 6 years ago by
Shane Gowland.
-
AuthorPosts
-
Shane Gowland
KeymasterIn “System Notes” after filling of all space inconvenient to scroll down.
Thanks!
Phobos
ModeratorSettings the “Drive selection mode” is reset the default if you change the language from Russian to English.
It is still not fixed.
Windows 11 Pro Insider, x64
Shane Gowland
KeymasterAh, it seems that one got skipped. I’ll look at it for 3.0.1
Phobos
ModeratorOld bug. If stretch the window horizontally to fill the screen, and then restart it, the program will shift behind screen.
Windows 11 Pro Insider, x64
Shane Gowland
KeymasterWindows will place System Ninja in the middle of the screen at the normal size before the previous window size can be applied. This causes the extra width to be assigned after the Draw() event, leading to half the app being hidden.
Something like this could resolve the problem:
int screen_size = SystemInformation.VirtualScreen.Width; if (app_size > ((screen_size / 2) - 1) { this.Location = new Point(this.Location.X - (screen_size / 2), this.Location.Y); }
Unfortunately, that would cause all sorts of new problems on systems with multiple monitors or an app that allows multiple desktops. Checking for these conditions adds a lot of extra complexity that makes this issue not worth fixing.
Sorry.
Anonymous
Inactivegot this problem..duplicate entry for windows store app / metro
v3.0.2
win 8.1u1 x64
https://i.imgur.com/hBSxwUR.pngShane Gowland
KeymasterThanks @dvdbane. I’ll add a filter to remove duplicates for 3.0.3.
Anonymous
Inactivegot another problem for exclusion rule
Path
C:\Windows\Minidump
Exclusion rule
C:\Windows\minidump
system ninja will detect file in folder Minidump eventhough the path same except the real location is with capital M
Anonymous
Inactive- Fixed issue where applications could be listed twice in the program exclusion dialog
the problem still occur in SN3.0.3
i think i found why the list got duplicate
it’s because the list got both Detect and DetectFile
i made this test to confirm
tested on win8.1 and XP
Shane Gowland
KeymasterThat makes sense. The filter I added only affects one detect type. Shouldn’t be too hard to fix it up.
Sorry! 🙂
-
AuthorPosts