From 157df22c7c208181392cc36e36b3fe89d36577d3 Mon Sep 17 00:00:00 2001 From: LegendaryFire Date: Thu, 25 Dec 2025 16:49:54 -0800 Subject: [PATCH] Fix typo in configuration loader causing aspect min to be set incorrectly --- src/core/linux/config-loader.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/linux/config-loader.hpp b/src/core/linux/config-loader.hpp index 073da29..d338f2e 100644 --- a/src/core/linux/config-loader.hpp +++ b/src/core/linux/config-loader.hpp @@ -173,7 +173,7 @@ class ConfigLoader { this->get(ini, "Contacts", "OrientationThresholdMax", m_config.contacts_orientation_thresh_max); this->get(ini, "Contacts", "SizeMin", m_config.contacts_size_min); this->get(ini, "Contacts", "SizeMax", m_config.contacts_size_max); - this->get(ini, "Contacts", "AspectMin", m_config.contacts_aspect_max); + this->get(ini, "Contacts", "AspectMin", m_config.contacts_aspect_min); this->get(ini, "Contacts", "AspectMax", m_config.contacts_aspect_max); this->get(ini, "Stylus", "Disable", m_config.stylus_disable);