Page 1 of 1

Swiper

Posted: Saturday 25 July 2020 17:46
by Scotty
Hey hey.

Is it possible to disable the swiper but still use multiple screens?

I'd like to be able to use the buttons I have set up to go to different screens but not use the physical gesture of swiping on the screen as I'm too clumsy and usually end up swiping when trying to press a switch.

The following disables the use of screens altogether instead of just disabling the swipe gesture.

Code: Select all

config['enable_swiper'] = 0;
Thanks

Re: Swiper

Posted: Saturday 01 August 2020 15:29
by Lokonli
Scotty wrote: Saturday 25 July 2020 17:46 Hey hey.

Is it possible to disable the swiper but still use multiple screens?

I'd like to be able to use the buttons I have set up to go to different screens but not use the physical gesture of swiping on the screen as I'm too clumsy and usually end up swiping when trying to press a switch.

The following disables the use of screens altogether instead of just disabling the swipe gesture.

Code: Select all

config['enable_swiper'] = 0;
Thanks
Currently that's not possible, but it's a small enhancement.

I'll add it to the list.

Re: Swiper

Posted: Saturday 15 August 2020 18:57
by FreakNL
Yes, it's possible. It's even in the docs..

https://dashticz.readthedocs.io/en/mast ... cellaneous

Re: Swiper

Posted: Saturday 15 August 2020 21:22
by HansieNL
FreakNL wrote: Saturday 15 August 2020 18:57 Yes, it's possible. It's even in the docs..

https://dashticz.readthedocs.io/en/mast ... cellaneous
With the css trick in the docs you don’t disable swiping, but only hide the swiping dots.

Re: Swiper

Posted: Monday 17 August 2020 8:46
by FreakNL
Ah, you are correct, I thought he just wanted to disable the buttons :)

Re: Swiper

Posted: Tuesday 18 August 2020 20:59
by Lokonli
Scotty wrote: Saturday 25 July 2020 17:46 Hey hey.

Is it possible to disable the swiper but still use multiple screens?

I'd like to be able to use the buttons I have set up to go to different screens but not use the physical gesture of swiping on the screen as I'm too clumsy and usually end up swiping when trying to press a switch.

The following disables the use of screens altogether instead of just disabling the swipe gesture.

Code: Select all

config['enable_swiper'] = 0;
Thanks
This has been implemented in latest beta.

To disable swipe on touch move add the following to CONFIG.js:

Code: Select all

config['swiper_touch_move'] = 0;