https://bugs.kde.org/show_bug.cgi?id=467395
--- Comment #1 from i...@semyonov.xyz --- I noticed the issue is still present with a single monitor. The mark is at the same horizontal position but at the bottom of my screen when in single monitor mode. Based on this, it is in the same place in the X canvas in both modes. I use the following script to switch between single and multi monitor modes: ``` #!/bin/bash main="DP-4" right_vert="DP-0" multi () { xrandr --output $main --primary --mode 1920x1080 --pos 0x540 --rotate normal --rate 240 xrandr --output $right_vert --mode 1920x1080 --pos 1920x0 --rotate left --rate 100 } single () { xrandr --output $main --primary --mode 1920x1080 --pos 0x0 --rotate normal --rate 240 xrandr --output $right_vert --off } xrandr --listactivemonitors | grep $right_vert > /dev/null \ && single \ || ( multi; multi ) ``` -- You are receiving this mail because: You are watching all bug changes.