https://bugs.documentfoundation.org/show_bug.cgi?id=117006

--- Comment #13 from Heiko Tietze <[email protected]> ---
(In reply to V Stuart Foote from comment #12)
> But, isn't that already in Tools -> Options -> Accessibility [1]:

AFAIU, this option activates the automatic detection but not the result - with
a limited usage in my opinion. For the users it's a big different if they just
enable the automatic driving and close the eyes (system is always right and
needs no control) or enable the mode that warns if unexpected things happens
requiring interaction (system is mostly right but user has control over it).

>From the technical POV the code might be

if (IsDetectionEnabled) doDetect();

while my suggestion requires some "sophisticated" internal storage

IsHiContrastSystem = doDetect();
if (!hasManuallySet) {
 doEnabled(IsHiContrastSystem) }
 else {
 doEnabled(UserSetting) };

onCheck():
hasManuallySet = true;
doEnable(!IsEnabled);
UserSetting=IsEnabled;

-- 
You are receiving this mail because:
You are the assignee for the bug.
_______________________________________________
Libreoffice-bugs mailing list
[email protected]
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

Reply via email to