This commit is contained in:
DavidXanatos 2023-07-25 09:04:51 +02:00
parent 95c8e01daa
commit b9dc429f84
2 changed files with 3 additions and 2 deletions

View File

@ -11,7 +11,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
### Fixed
- fixed issue with cross renaming of directories
- fixed issue with auto scroll not working
- fixed issue with auto scroll not working [#393](https://github.com/sandboxie-plus/Sandboxie/issues/393)
- fixed ui issue with new box removal protection [#3104](https://github.com/sandboxie-plus/Sandboxie/issues/3104)
- fixed issue with link argumetn handling [#2969](https://github.com/sandboxie-plus/Sandboxie/issues/2969)
- fixed IPC issue introduced in 1.10.1 [#3132](https://github.com/sandboxie-plus/Sandboxie/issues/3132) [#3134](https://github.com/sandboxie-plus/Sandboxie/issues/3134)

View File

@ -790,7 +790,7 @@ _FX HANDLE Gui_SetClipboardData(UINT uFormat, HANDLE hMem)
_FX BOOL Gui_EmptyClipboard()
{
if (!SbieApi_QueryConfBool(NULL, L"OpenClipboard", TRUE))
return NULL;
return FALSE;
return __sys_EmptyClipboard();
}