PsychedelicShaman Posted October 6, 2018 Posted October 6, 2018 2 minutes ago, bapt said: How did you do to have this "style" of context menu (immersive menu disabled) with the 1809 (as with the 1803) ? With the registry key, it does not work anymore Thanks so much I had this by default, maybe it's because i installed special edition called Enterprise LTSC 2019, not Home/Pro.
PsychedelicShaman Posted October 7, 2018 Posted October 7, 2018 @Tihiy Do you still work on this project? It's a pain for me to use Windows 10 explorer without OldNewExplorer.
MrGRiM Posted October 7, 2018 Posted October 7, 2018 It's working fine for me, maybe try unchecking it in folder options.
MrGRiM Posted October 7, 2018 Posted October 7, 2018 20 hours ago, bapt said: How did you do to have this "style" of context menu (immersive menu disabled) with the 1809 (as with the 1803) ? With the registry key, it does not work anymore Thanks so much This is normal for the explorer window context menu on the command bar and address bar.
tistou77 Posted October 7, 2018 Posted October 7, 2018 7 hours ago, MrGRiM said: This is normal for the explorer window context menu on the command bar and address bar. Ok thank you, it's not like that in all context menus
JFX Posted October 24, 2018 Posted October 24, 2018 (edited) @Tihiy MS remove the option to disable ImmersiveContextMenu in Windows 10 1809. It seems to be an easy fix for CDefView::_DoContextMenuPopup, but I guess we really need your skills for the CProperTreeHost::CreateHWNDInternal part. Can we get rid of the blurry menus with the next ONE release? Edited October 24, 2018 by JFX
tistou77 Posted October 31, 2018 Posted October 31, 2018 (edited) On 10/24/2018 at 4:01 PM, JFX said: @Tihiy MS remove the option to disable ImmersiveContextMenu in Windows 10 1809. It seems to be an easy fix for CDefView::_DoContextMenuPopup, but I guess we really need your skills for the CProperTreeHost::CreateHWNDInternal part. Can we get rid of the blurry menus with the next ONE release? @Tihiy UP please Edited October 31, 2018 by bapt
JohnTravolski Posted November 19, 2018 Posted November 19, 2018 I noticed something interesting using OldNewFile Explorer on Windows 10 1809 build 17763.134. Whenever I have the Dark Theme turned on and put the Details Pane at the bottom of Explorer, I end up with this: It may be hard to notice in the image, so here's a close up: For some reason, the border to the Details Pane is brown. This isn't particularly fitting with the rest of the theme. Does anybody know why this is, or how to change to color to, say for example, a dark gray? Here's what the border looks like without OldNewExplorer and the Dark Theme, for reference:
yash.chauhan Posted December 8, 2018 Posted December 8, 2018 (edited) Does anybody here know how to change the up (go to parent folder) button icon? I am 99% sure its icon is in shell32.dll but i am unable to find the way without modifying dll itself (which creates havoc in 8.1/10). (can you help me @MrGRiM?) Also @Tihiy, can you give option just like custom nav bar to override the up button icon? It is too frustrating to find the uifile for that specific icon. There is a very minor bug with latest ONE, the search bar in explorer gets clipped upto edge. Not bothering me but just indicating. Edited December 14, 2018 by yash.chauhan
MrGRiM Posted December 17, 2018 Posted December 17, 2018 On 12/9/2018 at 12:38 AM, yash.chauhan said: Does anybody here know how to change the up (go to parent folder) button icon? I am 99% sure its icon is in shell32.dll but i am unable to find the way without modifying dll itself (which creates havoc in 8.1/10). (can you help me @MrGRiM?) Also @Tihiy, can you give option just like custom nav bar to override the up button icon? It is too frustrating to find the uifile for that specific icon. There is a very minor bug with latest ONE, the search bar in explorer gets clipped upto edge. Not bothering me but just indicating. I have been adding all my custom icons to the shell32.dll.mui file in C:\Windows\System32\en-US, you can make a copy of the shell32.dll and add all the custom icons you want then export the icon folder as a res file using Restorator making sure you only save the modified resources, then make a copy of the shell32.dll.mui file and open the file in Restorator, then drag and drop the res file you made on the open file in the left column in Restorator, you should now be able to save the modified file. After that you will need to take ownership of the shell32.dll.mui file then rename it to shell32.dll.mui.bak, then copy the modified shell32.dll.mui file back to that folder, you will then have to restart explorer or restart windows to take effect, you may also nee to clear the icon cache. To clear the icon cache I just use a batch file with this in it. @ECHO OFF cd\ taskkill /f /IM explorer.exe SET FILE98=*.db SET PATH98=%SYSTEMDRIVE%\Users\%USERNAME%\AppData\Local\Microsoft\Windows\Explorer\ SET FILE99=IconCache.db SET PATH99=%SYSTEMDRIVE%\Users\%USERNAME%\AppData\Local CD /d %userprofile%\AppData\Local DEL IconCache.db /a IF EXIST %FILE99% ( attrib -H "%PATH99%\%FILE99%" del "%PATH99%\%FILE99%" ) IF EXIST %FILE98% ( attrib -H "%PATH98%\%FILE98%" del "%PATH98%\%FILE98%" ) IF EXIST IconCache.db ( DEL IconCache.db /a ) CD /d %userprofile%\AppData\Local\Microsoft\Windows del /f /s /q Explorer\*.* del /f /s /q Explorer\iconcache*.* del /f /s /q Explorer\thumbcache*.* DEL /f /s /q Explorer\thumbcache*.* /a START %windir%\"explorer.exe" EXIT Good luck, this is the only way I know works without causing a black screen. Unless Tihiy can give you a better solution. 1
yash.chauhan Posted December 17, 2018 Posted December 17, 2018 9 hours ago, MrGRiM said: I have been adding all my custom icons to the shell32.dll.mui file in C:\Windows\System32\en-US, you can make a copy of the shell32.dll and add all the custom icons you want then export the icon folder as a res file using Restorator making sure you only save the modified resources, then make a copy of the shell32.dll.mui file and open the file in Restorator, then drag and drop the res file you made on the open file in the left column in Restorator, you should now be able to save the modified file. After that you will need to take ownership of the shell32.dll.mui file then rename it to shell32.dll.mui.bak, then copy the modified shell32.dll.mui file back to that folder, you will then have to restart explorer or restart windows to take effect, you may also nee to clear the icon cache. To clear the icon cache I just use a batch file with this in it. @ECHO OFF cd\ taskkill /f /IM explorer.exe SET FILE98=*.db SET PATH98=%SYSTEMDRIVE%\Users\%USERNAME%\AppData\Local\Microsoft\Windows\Explorer\ SET FILE99=IconCache.db SET PATH99=%SYSTEMDRIVE%\Users\%USERNAME%\AppData\Local CD /d %userprofile%\AppData\Local DEL IconCache.db /a IF EXIST %FILE99% ( attrib -H "%PATH99%\%FILE99%" del "%PATH99%\%FILE99%" ) IF EXIST %FILE98% ( attrib -H "%PATH98%\%FILE98%" del "%PATH98%\%FILE98%" ) IF EXIST IconCache.db ( DEL IconCache.db /a ) CD /d %userprofile%\AppData\Local\Microsoft\Windows del /f /s /q Explorer\*.* del /f /s /q Explorer\iconcache*.* del /f /s /q Explorer\thumbcache*.* DEL /f /s /q Explorer\thumbcache*.* /a START %windir%\"explorer.exe" EXIT Good luck, this is the only way I know works without causing a black screen. Unless Tihiy can give you a better solution. HOLY s***!!!!!!!!!!!!!!!!!! This is one of the best thing i came to know of replacing a dll resource without creating havoc or welcoming a disaster! This truly worked and it even allowed to replace bitmap for the navigation pane! (still ONE is useful if using theme like windows 7, which has different navigation pane bg). Thanks a lot man @MrGRiM!!!! One more help, do you know where the background for address bar lies? (i am asking for specific dll, because the one with msstyle edit(Toolbars, header & rebar>rebar>aero>normal>active>background) messes up with internet explorer address bar) I have uploaded the image.
dhjohns Posted December 18, 2018 Posted December 18, 2018 @TihiyCould you update ONE to support 19H1 please?
Stefani2983 Posted December 22, 2018 Posted December 22, 2018 In Dark mode, glass on navbar option is invalid. Are there any solutions for this problem? 1
yash.chauhan Posted December 22, 2018 Posted December 22, 2018 5 hours ago, Stefani2983 said: In Dark mode, glass on navbar option is invalid. Can you check on internet explorer it looks like the one i posed above?
Stefani2983 Posted December 22, 2018 Posted December 22, 2018 2 hours ago, yash.chauhan said: Can you check on internet explorer it looks like the one i posed above?
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now