Mouse double click speed

I like to use single and double click tap actions, but running into problems
with double clicks.
Is there a way to increase the delay between two clicks, but still be recognized as
a double click ?
Changing the mouse settings in Windows does not seem to have any effect.

How is that related to Home Assistant?

That is my question.
It is not Windows related, in the Windows device settings the double-click settings are working.
It is not Chrome related, as in Chrome the double-click is recognized correctly.
That leaves me with Home Assistant. There I have to be superfast to achieve a double-click, for double-tap actions, for example.
Or, at least related to something which is used by Home Assistant.

Well, then, where in “Home Assistant” are you trying to double-click?
HA’s frontend run in a browser, so I don’t understand the question…

I am trying to use a double-tap action; for me this means double-click. Or am I wrong ?

Screenshot, please

Screenshot might not tell you anything, but here is the code:

type: picture-elements
elements:
  - entity: sensor.date
    style:
      font-size: 300%
      top: 50%
      left: 50%
    type: state-label
    tap_action:
      action: fire-dom-event
      browser_mod:
        service: browser_mod.popup
        title: []
        data:
          content:
            type: custom:clock-weather-card
            entity: weather.forecast_home
            temperature_sensor: sensor.eingangklima_temperature
            locale: de
          style: |
            --popup-background-color: black;
    double_tap_action:
      action: fire-dom-event
      browser_mod:
        service: browser_mod.popup
        data:
          content:
            type: custom:clock-weather-card
            entity: weather.forecast_home_hourly
            number_of_forecasts: '5'
            current: true
            forecast: true
            hourly_forecast: true
            name: Randaberg
          style: |
            --popup-background-color: black;
    hold_action:
      action: fire-dom-event
      browser_mod:
        service: browser_mod.popup
        title: Randaberg
        data:
          content:
            type: custom:weather-radar-card
            show_zoom: true
image: /local/images/400x100.svg

To get to the double-tap action, I need to do a superfast double-click; and even then it does not work always.