search fixes, preset fixes, ladspa icon logging, igor pref theme, drag btn rollover
[goodguy/history.git] / cinelerra-5.1 / cinelerra / timebar.C
index ed0011cd71f102a52d9b4b45f81436533f1a1536..d33d4ea32e85b14cdfbd10652739719a8435c096 100644 (file)
@@ -97,7 +97,7 @@ int LabelGUI::button_press_event()
        if( this->is_event_win() && get_buttonpress() == 3 ) {
                if( label ) {
                        int cur_x, cur_y;
-                       get_abs_cursor_xy(cur_x, cur_y, 0);
+                       get_abs_cursor(cur_x, cur_y, 0);
                        timebar->label_edit->start(label, cur_x, cur_y);
                }
                result = 1;
@@ -430,7 +430,10 @@ void TimeBar::update(int flush)
                double position = edl->local_session->get_selectionstart(1);
                int64_t pixel = position_to_pixel(position);
 // Draw insertion point position.
-               set_color(mwindow->theme->timebar_cursor_color);
+               int color = mwindow->theme->timebar_cursor_color;
+               if( mwindow->preferences->forward_render_displacement )
+                       color ^= 0x00ffff;
+               set_color(color);
                draw_line(pixel, 0, pixel, get_h());
        }