* geany 1.38 (built on 2021-10-14 with GTK 3.24.30, GLib 2.68.4)
* Linux Mint 21.1 Cinnamon on laptop and desktop
* Happens with all files, regardless of size or type.
* Also, clicking the arrow requires 3 clicks before there's any movement.  That 
is, it's 3 clicks to move one line.
* Can I post a video screen capture in webm (or other) format?
* Someone on another forum kindly looked into it and referenced this bit of 
code as the problem:
>         if (gtk_adjustment_get_upper(adjustmenth) != horizEndPreferred ||
                        gtk_adjustment_get_page_size(adjustmenth) != pageWidth 
||
                        gtk_adjustment_get_page_increment(adjustmenth) != 
pageIncrement ||
                        gtk_adjustment_get_step_increment(adjustmenth) != 
charWidth) {
                gtk_adjustment_set_upper(adjustmenth, horizEndPreferred);
                gtk_adjustment_set_page_size(adjustmenth, pageWidth);
                gtk_adjustment_set_page_increment(adjustmenth, pageIncrement);
                gtk_adjustment_set_step_increment(adjustmenth, charWidth);
#if !GTK_CHECK_VERSION(3,18,0)
                gtk_adjustment_changed(GTK_ADJUSTMENT(adjustmenth));
#endif
                gtk_adjustment_set_value(GTK_ADJUSTMENT(adjustmenth), xOffset);
                modified = true;
        }

-- 
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/issues/4188#issuecomment-2571285895
You are receiving this because you are subscribed to this thread.

Message ID: <geany/geany/issues/4188/2571285...@github.com>

Reply via email to