lv2 fixes, dcraw upgrade, arch/libdv
[goodguy/history.git] / cinelerra-5.1 / cinelerra / appearanceprefs.C
index 2f51f61fb359cdf4a71ff18a5e4b7f22b68ed524..766cf6ce2c9fd3f61e4ec48a1ee4cd6bc945b0a7 100644 (file)
@@ -191,9 +191,6 @@ void AppearancePrefs::create_objects()
        y1 += displacement->get_h() + 5;
        add_subwindow(thumbnails = new ViewThumbnails(x1, y1, pwindow));
        y1 += thumbnails->get_h() + 5;
-       PrefsAutostartLV2UI *autostart_lv2ui = new PrefsAutostartLV2UI(x1, y1,pwindow);
-       add_subwindow(autostart_lv2ui);
-       y1 += autostart_lv2ui->get_h() + 5;
        PerpetualSession *perpetual = new PerpetualSession(x1, y1, pwindow);
        add_subwindow(perpetual);
        y1 += perpetual->get_h() + 5;
@@ -635,19 +632,6 @@ int YuvColorRangeItem::handle_event()
        return popup->handle_event();
 }
 
-
-PrefsAutostartLV2UI::PrefsAutostartLV2UI(int x, int y, PreferencesWindow *pwindow)
- : BC_CheckBox(x, y,
-       pwindow->thread->preferences->autostart_lv2ui, _("Auto start lv2 gui"))
-{
-       this->pwindow = pwindow;
-}
-int PrefsAutostartLV2UI::handle_event()
-{
-       pwindow->thread->preferences->autostart_lv2ui = get_value();
-       return 1;
-}
-
 PerpetualSession::PerpetualSession(int x, int y, PreferencesWindow *pwindow)
  : BC_CheckBox(x, y,
        pwindow->thread->preferences->perpetual_session, _("Perpetual session"))