Details
-
Bug
-
Resolution: Unresolved
-
Trivial
-
None
-
None
Description
reactos-bootcd-0.4.15-dev-7924-g5949c20-x86-gcc-lin-dbg
- Open regedit
- Select a key
- Full path is displayed in Status bar : HKEY_xxx\PATH\Key
- Right click > "Delete" (or "Search" or "Copy key name", ...)
Only partial path is displayed in status bar : PATH\Key
Suggestion for a fix
- UpdateStatusBar in https://github.com/reactos/reactos/blob/master/base/applications/regedit/framewnd.c#L165 is wrong because to does not append first the full path
- Good implementation is in https://github.com/reactos/reactos/blob/master/base/applications/regedit/childwnd.c#L307
- See if particular
/* set (correct) the address bar text */
|
if (keyPath[0] != UNICODE_NULL) |
StringCbPrintfW(fullPath, cbFullPath, L"%s%s%s", rootName, |
((keyPath[0] == L'\\') ? L"" : L"\\"), keyPath); |
else |
StringCbCopyW(fullPath, cbFullPath, rootName);
|
Attachments
Issue Links
- relates to
-
CORE-18876 regedit: Refactor and improve
-
- Untriaged
-