* 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; }