Compare commits

...

2 Commits

Author SHA1 Message Date
Vaxry
c4a4c34156 version: bump to 0.50.0 2025-07-16 11:33:42 +02:00
Vaxry
d4fbedcd35 core: never use hw cursors when tearing 2025-07-16 11:33:40 +02:00
2 changed files with 4 additions and 1 deletions

View File

@@ -1 +1 @@
0.49.0
0.50.0

View File

@@ -3131,6 +3131,9 @@ const std::vector<SConfigOptionDescription>& CConfigManager::getAllDescriptions(
bool CConfigManager::shouldUseSoftwareCursors(PHLMONITOR pMonitor) {
static auto PNOHW = CConfigValue<Hyprlang::INT>("cursor:no_hardware_cursors");
if (pMonitor->m_tearingState.activelyTearing)
return true;
switch (*PNOHW) {
case 0: return false;
case 1: return true;