ffmpeg seek fixes, asset only pastes, plugin info, remove vocoder, misc fixes
[goodguy/history.git] / cinelerra-5.1 / guicast / bclistbox.C
index 882c378be96f2bab80cb01c1b700aeda152b5706..fe954f89e36c317d8d0e78ffe955dee478a87fe7 100644 (file)
@@ -64,6 +64,10 @@ int BC_ListBoxYScroll::handle_event()
        return 1;
 }
 
+int BC_ListBoxYScroll::update_length(int64_t length, int64_t position, int64_t handlelength, int flush)
+{
+       return BC_ScrollBar::update_length(length+handlelength/4, position, handlelength, flush);
+}
 
 
 
@@ -95,6 +99,10 @@ int BC_ListBoxXScroll::handle_event()
        return 1;
 }
 
+int BC_ListBoxXScroll::update_length(int64_t length, int64_t position, int64_t handlelength, int flush)
+{
+       return BC_ScrollBar::update_length(length+handlelength/4, position, handlelength, flush);
+}