# HG changeset patch # User Torsten # Date 1421647452 -3600 # Node ID 6d75f1683ce822a2fae79be0d3086bb801ec1bcf # Parent 4fe86a372f10c3143a326bcae0f5c4bac63a4dd7 fix scroll width of horizontal scroll bar (bug #44040) *file-editor-tab.cc (notice-settings): enable scroll width tracking diff -r 4fe86a372f10 -r 6d75f1683ce8 libgui/src/m-editor/file-editor-tab.cc --- a/libgui/src/m-editor/file-editor-tab.cc Sun Jan 18 18:33:43 2015 -0500 +++ b/libgui/src/m-editor/file-editor-tab.cc Mon Jan 19 07:04:12 2015 +0100 @@ -1908,6 +1908,7 @@ _edit_area->SendScintilla (QsciScintillaBase::SCI_SETHSCROLLBAR, settings->value ("editor/show_hscroll_bar",true).toBool ()); _edit_area->SendScintilla (QsciScintillaBase::SCI_SETSCROLLWIDTH,-1); + _edit_area->SendScintilla (QsciScintillaBase::SCI_SETSCROLLWIDTHTRACKING,true); _long_title = settings->value ("editor/longWindowTitle", false).toBool (); update_window_title (_edit_area->isModified ());