From: Good Guy Date: Mon, 30 Jul 2018 17:30:34 +0000 (-0600) Subject: add 'v' shortcut in resource wdw, sams proxy icons, update shortcuts doc X-Git-Url: http://git.cinelerra-gg.org/git/?p=goodguy%2Fhistory.git;a=commitdiff_plain;h=a0f90514d89589e1136ce90eda493c9545b8f10b add 'v' shortcut in resource wdw, sams proxy icons, update shortcuts doc --- diff --git a/cinelerra-5.1/cinelerra/awindowgui.C b/cinelerra-5.1/cinelerra/awindowgui.C index 505f32f1..4b9a912d 100644 --- a/cinelerra-5.1/cinelerra/awindowgui.C +++ b/cinelerra-5.1/cinelerra/awindowgui.C @@ -1202,6 +1202,39 @@ void AWindowGUI::stop_vicon_drawing() vicon_thread->stop_drawing(); } +int AWindowGUI::cycle_assetlist_format() +{ + EDLSession *session = mwindow->edl->session; + int format = ASSETS_TEXT; + if( allow_iconlisting ) { + switch( session->assetlist_format ) { + case ASSETS_TEXT: + format = ASSETS_ICONS; + break; + case ASSETS_ICONS: + format = ASSETS_ICONS_PACKED; + break; + case ASSETS_ICONS_PACKED: + format = ASSETS_ICON_LIST; + break; + case ASSETS_ICON_LIST: + format = ASSETS_TEXT; + break; + } + } + stop_vicon_drawing(); + session->assetlist_format = format; + asset_list->update_format(session->assetlist_format, 0); + int x0 = 0; + int x1 = asset_list->get_w(); + int y0 = asset_list->get_title_h(); + int y1 = asset_list->get_h(); + vicon_thread->set_drawing_area(x0,y0, x1,y1); + async_update_assets(); + start_vicon_drawing(); + return 1; +} + AWindowRemovePluginGUI:: AWindowRemovePluginGUI(AWindow *awindow, AWindowRemovePlugin *thread, int x, int y, PluginServer *plugin) @@ -1337,6 +1370,8 @@ int AWindowGUI::keypress_event() return 1; } break; + case 'v': + return cycle_assetlist_format(); case DELETE: if( shift_down() ) { PluginServer* plugin = selected_plugin(); @@ -2612,7 +2647,7 @@ int AVIconDrawing::handle_event() AWindowListFormat::AWindowListFormat(MWindow *mwindow, AWindowGUI *gui) - : BC_MenuItem("") + : BC_MenuItem("","v",'v') { this->mwindow = mwindow; this->gui = gui; @@ -2620,37 +2655,7 @@ AWindowListFormat::AWindowListFormat(MWindow *mwindow, AWindowGUI *gui) int AWindowListFormat::handle_event() { - gui->stop_vicon_drawing(); - - EDLSession *session = mwindow->edl->session; - if( mwindow->awindow->gui->allow_iconlisting ) { - switch( session->assetlist_format ) { - case ASSETS_TEXT: - session->assetlist_format = ASSETS_ICONS; - break; - case ASSETS_ICONS: - session->assetlist_format = ASSETS_ICONS_PACKED; - break; - case ASSETS_ICONS_PACKED: - session->assetlist_format = ASSETS_ICON_LIST; - break; - case ASSETS_ICON_LIST: - session->assetlist_format = ASSETS_TEXT; - break; - } - } - else - mwindow->edl->session->assetlist_format = ASSETS_TEXT; - gui->asset_list->update_format(session->assetlist_format, 0); - int x0 = 0; - int x1 = gui->asset_list->get_w(); - int y0 = gui->asset_list->get_title_h(); - int y1 = gui->asset_list->get_h(); - gui->vicon_thread->set_drawing_area(x0,y0, x1,y1); - - gui->async_update_assets(); - gui->start_vicon_drawing(); - return 1; + return gui->cycle_assetlist_format(); } void AWindowListFormat::update() diff --git a/cinelerra-5.1/cinelerra/awindowgui.h b/cinelerra-5.1/cinelerra/awindowgui.h index b941e18d..61ad3d77 100644 --- a/cinelerra-5.1/cinelerra/awindowgui.h +++ b/cinelerra-5.1/cinelerra/awindowgui.h @@ -202,6 +202,7 @@ public: void start_vicon_drawing(); void stop_vicon_drawing(); void update_picon(Indexable *indexable); + int cycle_assetlist_format(); VFrame *get_picon(const char *name, const char *plugin_icons); VFrame *get_picon(const char *name); diff --git a/cinelerra-5.1/doc/shortcuts.html b/cinelerra-5.1/doc/shortcuts.html index 3e879c70..fbb39542 100644 --- a/cinelerra-5.1/doc/shortcuts.html +++ b/cinelerra-5.1/doc/shortcuts.html @@ -2178,6 +2178,12 @@ Double click Draw vicons on- bigger thumbnail plays or stops + +
+ 'v' + + Switch to next Display option +
'o' diff --git a/cinelerra-5.1/plugins/theme_blond/data/proxy_p_chkd.png b/cinelerra-5.1/plugins/theme_blond/data/proxy_p_chkd.png index 7b87034d..2d7ce462 100644 Binary files a/cinelerra-5.1/plugins/theme_blond/data/proxy_p_chkd.png and b/cinelerra-5.1/plugins/theme_blond/data/proxy_p_chkd.png differ diff --git a/cinelerra-5.1/plugins/theme_blond/data/proxy_p_chkdhi.png b/cinelerra-5.1/plugins/theme_blond/data/proxy_p_chkdhi.png index 5fbec076..ad7f2f6c 100644 Binary files a/cinelerra-5.1/plugins/theme_blond/data/proxy_p_chkdhi.png and b/cinelerra-5.1/plugins/theme_blond/data/proxy_p_chkdhi.png differ diff --git a/cinelerra-5.1/plugins/theme_blond/data/proxy_p_down.png b/cinelerra-5.1/plugins/theme_blond/data/proxy_p_down.png index c64068ff..b4b443d0 100644 Binary files a/cinelerra-5.1/plugins/theme_blond/data/proxy_p_down.png and b/cinelerra-5.1/plugins/theme_blond/data/proxy_p_down.png differ diff --git a/cinelerra-5.1/plugins/theme_blond/data/proxy_p_hi.png b/cinelerra-5.1/plugins/theme_blond/data/proxy_p_hi.png index 8e098800..f607902f 100644 Binary files a/cinelerra-5.1/plugins/theme_blond/data/proxy_p_hi.png and b/cinelerra-5.1/plugins/theme_blond/data/proxy_p_hi.png differ diff --git a/cinelerra-5.1/plugins/theme_blond/data/proxy_p_up.png b/cinelerra-5.1/plugins/theme_blond/data/proxy_p_up.png index 1e8d2579..ac659593 100644 Binary files a/cinelerra-5.1/plugins/theme_blond/data/proxy_p_up.png and b/cinelerra-5.1/plugins/theme_blond/data/proxy_p_up.png differ diff --git a/cinelerra-5.1/plugins/theme_blond/data/proxy_s_chkd.png b/cinelerra-5.1/plugins/theme_blond/data/proxy_s_chkd.png index d8e4a2bf..8c8b6b7a 100644 Binary files a/cinelerra-5.1/plugins/theme_blond/data/proxy_s_chkd.png and b/cinelerra-5.1/plugins/theme_blond/data/proxy_s_chkd.png differ diff --git a/cinelerra-5.1/plugins/theme_blond/data/proxy_s_chkdhi.png b/cinelerra-5.1/plugins/theme_blond/data/proxy_s_chkdhi.png index 356d5c4a..a90fa9d0 100644 Binary files a/cinelerra-5.1/plugins/theme_blond/data/proxy_s_chkdhi.png and b/cinelerra-5.1/plugins/theme_blond/data/proxy_s_chkdhi.png differ diff --git a/cinelerra-5.1/plugins/theme_blond/data/proxy_s_down.png b/cinelerra-5.1/plugins/theme_blond/data/proxy_s_down.png index 919ec080..7ecffa32 100644 Binary files a/cinelerra-5.1/plugins/theme_blond/data/proxy_s_down.png and b/cinelerra-5.1/plugins/theme_blond/data/proxy_s_down.png differ diff --git a/cinelerra-5.1/plugins/theme_blond/data/proxy_s_hi.png b/cinelerra-5.1/plugins/theme_blond/data/proxy_s_hi.png index 7ed4e662..4663f003 100644 Binary files a/cinelerra-5.1/plugins/theme_blond/data/proxy_s_hi.png and b/cinelerra-5.1/plugins/theme_blond/data/proxy_s_hi.png differ diff --git a/cinelerra-5.1/plugins/theme_blond/data/proxy_s_up.png b/cinelerra-5.1/plugins/theme_blond/data/proxy_s_up.png index 293360fc..a8e02bfc 100644 Binary files a/cinelerra-5.1/plugins/theme_blond/data/proxy_s_up.png and b/cinelerra-5.1/plugins/theme_blond/data/proxy_s_up.png differ diff --git a/cinelerra-5.1/plugins/theme_blond_cv/data/proxy_p_chkd.png b/cinelerra-5.1/plugins/theme_blond_cv/data/proxy_p_chkd.png index 7b87034d..2d7ce462 100644 Binary files a/cinelerra-5.1/plugins/theme_blond_cv/data/proxy_p_chkd.png and b/cinelerra-5.1/plugins/theme_blond_cv/data/proxy_p_chkd.png differ diff --git a/cinelerra-5.1/plugins/theme_blond_cv/data/proxy_p_chkdhi.png b/cinelerra-5.1/plugins/theme_blond_cv/data/proxy_p_chkdhi.png index 5fbec076..ad7f2f6c 100644 Binary files a/cinelerra-5.1/plugins/theme_blond_cv/data/proxy_p_chkdhi.png and b/cinelerra-5.1/plugins/theme_blond_cv/data/proxy_p_chkdhi.png differ diff --git a/cinelerra-5.1/plugins/theme_blond_cv/data/proxy_p_down.png b/cinelerra-5.1/plugins/theme_blond_cv/data/proxy_p_down.png index c64068ff..b4b443d0 100644 Binary files a/cinelerra-5.1/plugins/theme_blond_cv/data/proxy_p_down.png and b/cinelerra-5.1/plugins/theme_blond_cv/data/proxy_p_down.png differ diff --git a/cinelerra-5.1/plugins/theme_blond_cv/data/proxy_p_hi.png b/cinelerra-5.1/plugins/theme_blond_cv/data/proxy_p_hi.png index 8e098800..f607902f 100644 Binary files a/cinelerra-5.1/plugins/theme_blond_cv/data/proxy_p_hi.png and b/cinelerra-5.1/plugins/theme_blond_cv/data/proxy_p_hi.png differ diff --git a/cinelerra-5.1/plugins/theme_blond_cv/data/proxy_p_up.png b/cinelerra-5.1/plugins/theme_blond_cv/data/proxy_p_up.png index 1e8d2579..ac659593 100644 Binary files a/cinelerra-5.1/plugins/theme_blond_cv/data/proxy_p_up.png and b/cinelerra-5.1/plugins/theme_blond_cv/data/proxy_p_up.png differ diff --git a/cinelerra-5.1/plugins/theme_blond_cv/data/proxy_s_chkd.png b/cinelerra-5.1/plugins/theme_blond_cv/data/proxy_s_chkd.png index d8e4a2bf..8c8b6b7a 100644 Binary files a/cinelerra-5.1/plugins/theme_blond_cv/data/proxy_s_chkd.png and b/cinelerra-5.1/plugins/theme_blond_cv/data/proxy_s_chkd.png differ diff --git a/cinelerra-5.1/plugins/theme_blond_cv/data/proxy_s_chkdhi.png b/cinelerra-5.1/plugins/theme_blond_cv/data/proxy_s_chkdhi.png index 356d5c4a..a90fa9d0 100644 Binary files a/cinelerra-5.1/plugins/theme_blond_cv/data/proxy_s_chkdhi.png and b/cinelerra-5.1/plugins/theme_blond_cv/data/proxy_s_chkdhi.png differ diff --git a/cinelerra-5.1/plugins/theme_blond_cv/data/proxy_s_down.png b/cinelerra-5.1/plugins/theme_blond_cv/data/proxy_s_down.png index 919ec080..7ecffa32 100644 Binary files a/cinelerra-5.1/plugins/theme_blond_cv/data/proxy_s_down.png and b/cinelerra-5.1/plugins/theme_blond_cv/data/proxy_s_down.png differ diff --git a/cinelerra-5.1/plugins/theme_blond_cv/data/proxy_s_hi.png b/cinelerra-5.1/plugins/theme_blond_cv/data/proxy_s_hi.png index 7ed4e662..4663f003 100644 Binary files a/cinelerra-5.1/plugins/theme_blond_cv/data/proxy_s_hi.png and b/cinelerra-5.1/plugins/theme_blond_cv/data/proxy_s_hi.png differ diff --git a/cinelerra-5.1/plugins/theme_blond_cv/data/proxy_s_up.png b/cinelerra-5.1/plugins/theme_blond_cv/data/proxy_s_up.png index 293360fc..a8e02bfc 100644 Binary files a/cinelerra-5.1/plugins/theme_blond_cv/data/proxy_s_up.png and b/cinelerra-5.1/plugins/theme_blond_cv/data/proxy_s_up.png differ diff --git a/cinelerra-5.1/plugins/theme_blue/data/proxy_p_chkd.png b/cinelerra-5.1/plugins/theme_blue/data/proxy_p_chkd.png index 7b87034d..2d7ce462 100644 Binary files a/cinelerra-5.1/plugins/theme_blue/data/proxy_p_chkd.png and b/cinelerra-5.1/plugins/theme_blue/data/proxy_p_chkd.png differ diff --git a/cinelerra-5.1/plugins/theme_blue/data/proxy_p_chkdhi.png b/cinelerra-5.1/plugins/theme_blue/data/proxy_p_chkdhi.png index 5fbec076..ad7f2f6c 100644 Binary files a/cinelerra-5.1/plugins/theme_blue/data/proxy_p_chkdhi.png and b/cinelerra-5.1/plugins/theme_blue/data/proxy_p_chkdhi.png differ diff --git a/cinelerra-5.1/plugins/theme_blue/data/proxy_p_down.png b/cinelerra-5.1/plugins/theme_blue/data/proxy_p_down.png index c64068ff..b4b443d0 100644 Binary files a/cinelerra-5.1/plugins/theme_blue/data/proxy_p_down.png and b/cinelerra-5.1/plugins/theme_blue/data/proxy_p_down.png differ diff --git a/cinelerra-5.1/plugins/theme_blue/data/proxy_p_hi.png b/cinelerra-5.1/plugins/theme_blue/data/proxy_p_hi.png index 8e098800..f607902f 100644 Binary files a/cinelerra-5.1/plugins/theme_blue/data/proxy_p_hi.png and b/cinelerra-5.1/plugins/theme_blue/data/proxy_p_hi.png differ diff --git a/cinelerra-5.1/plugins/theme_blue/data/proxy_p_up.png b/cinelerra-5.1/plugins/theme_blue/data/proxy_p_up.png index 1e8d2579..ac659593 100644 Binary files a/cinelerra-5.1/plugins/theme_blue/data/proxy_p_up.png and b/cinelerra-5.1/plugins/theme_blue/data/proxy_p_up.png differ diff --git a/cinelerra-5.1/plugins/theme_blue/data/proxy_s_chkd.png b/cinelerra-5.1/plugins/theme_blue/data/proxy_s_chkd.png index d8e4a2bf..8c8b6b7a 100644 Binary files a/cinelerra-5.1/plugins/theme_blue/data/proxy_s_chkd.png and b/cinelerra-5.1/plugins/theme_blue/data/proxy_s_chkd.png differ diff --git a/cinelerra-5.1/plugins/theme_blue/data/proxy_s_chkdhi.png b/cinelerra-5.1/plugins/theme_blue/data/proxy_s_chkdhi.png index 356d5c4a..a90fa9d0 100644 Binary files a/cinelerra-5.1/plugins/theme_blue/data/proxy_s_chkdhi.png and b/cinelerra-5.1/plugins/theme_blue/data/proxy_s_chkdhi.png differ diff --git a/cinelerra-5.1/plugins/theme_blue/data/proxy_s_down.png b/cinelerra-5.1/plugins/theme_blue/data/proxy_s_down.png index 919ec080..7ecffa32 100644 Binary files a/cinelerra-5.1/plugins/theme_blue/data/proxy_s_down.png and b/cinelerra-5.1/plugins/theme_blue/data/proxy_s_down.png differ diff --git a/cinelerra-5.1/plugins/theme_blue/data/proxy_s_hi.png b/cinelerra-5.1/plugins/theme_blue/data/proxy_s_hi.png index 7ed4e662..4663f003 100644 Binary files a/cinelerra-5.1/plugins/theme_blue/data/proxy_s_hi.png and b/cinelerra-5.1/plugins/theme_blue/data/proxy_s_hi.png differ diff --git a/cinelerra-5.1/plugins/theme_blue/data/proxy_s_up.png b/cinelerra-5.1/plugins/theme_blue/data/proxy_s_up.png index 293360fc..a8e02bfc 100644 Binary files a/cinelerra-5.1/plugins/theme_blue/data/proxy_s_up.png and b/cinelerra-5.1/plugins/theme_blue/data/proxy_s_up.png differ diff --git a/cinelerra-5.1/plugins/theme_blue_dot/data/proxy_p_chkd.png b/cinelerra-5.1/plugins/theme_blue_dot/data/proxy_p_chkd.png index 7b87034d..2d7ce462 100644 Binary files a/cinelerra-5.1/plugins/theme_blue_dot/data/proxy_p_chkd.png and b/cinelerra-5.1/plugins/theme_blue_dot/data/proxy_p_chkd.png differ diff --git a/cinelerra-5.1/plugins/theme_blue_dot/data/proxy_p_chkdhi.png b/cinelerra-5.1/plugins/theme_blue_dot/data/proxy_p_chkdhi.png index 5fbec076..ad7f2f6c 100644 Binary files a/cinelerra-5.1/plugins/theme_blue_dot/data/proxy_p_chkdhi.png and b/cinelerra-5.1/plugins/theme_blue_dot/data/proxy_p_chkdhi.png differ diff --git a/cinelerra-5.1/plugins/theme_blue_dot/data/proxy_p_down.png b/cinelerra-5.1/plugins/theme_blue_dot/data/proxy_p_down.png index c64068ff..b4b443d0 100644 Binary files a/cinelerra-5.1/plugins/theme_blue_dot/data/proxy_p_down.png and b/cinelerra-5.1/plugins/theme_blue_dot/data/proxy_p_down.png differ diff --git a/cinelerra-5.1/plugins/theme_blue_dot/data/proxy_p_hi.png b/cinelerra-5.1/plugins/theme_blue_dot/data/proxy_p_hi.png index 8e098800..f607902f 100644 Binary files a/cinelerra-5.1/plugins/theme_blue_dot/data/proxy_p_hi.png and b/cinelerra-5.1/plugins/theme_blue_dot/data/proxy_p_hi.png differ diff --git a/cinelerra-5.1/plugins/theme_blue_dot/data/proxy_p_up.png b/cinelerra-5.1/plugins/theme_blue_dot/data/proxy_p_up.png index 1e8d2579..ac659593 100644 Binary files a/cinelerra-5.1/plugins/theme_blue_dot/data/proxy_p_up.png and b/cinelerra-5.1/plugins/theme_blue_dot/data/proxy_p_up.png differ diff --git a/cinelerra-5.1/plugins/theme_blue_dot/data/proxy_s_chkd.png b/cinelerra-5.1/plugins/theme_blue_dot/data/proxy_s_chkd.png index d8e4a2bf..8c8b6b7a 100644 Binary files a/cinelerra-5.1/plugins/theme_blue_dot/data/proxy_s_chkd.png and b/cinelerra-5.1/plugins/theme_blue_dot/data/proxy_s_chkd.png differ diff --git a/cinelerra-5.1/plugins/theme_blue_dot/data/proxy_s_chkdhi.png b/cinelerra-5.1/plugins/theme_blue_dot/data/proxy_s_chkdhi.png index 356d5c4a..a90fa9d0 100644 Binary files a/cinelerra-5.1/plugins/theme_blue_dot/data/proxy_s_chkdhi.png and b/cinelerra-5.1/plugins/theme_blue_dot/data/proxy_s_chkdhi.png differ diff --git a/cinelerra-5.1/plugins/theme_blue_dot/data/proxy_s_down.png b/cinelerra-5.1/plugins/theme_blue_dot/data/proxy_s_down.png index 919ec080..7ecffa32 100644 Binary files a/cinelerra-5.1/plugins/theme_blue_dot/data/proxy_s_down.png and b/cinelerra-5.1/plugins/theme_blue_dot/data/proxy_s_down.png differ diff --git a/cinelerra-5.1/plugins/theme_blue_dot/data/proxy_s_hi.png b/cinelerra-5.1/plugins/theme_blue_dot/data/proxy_s_hi.png index 7ed4e662..4663f003 100644 Binary files a/cinelerra-5.1/plugins/theme_blue_dot/data/proxy_s_hi.png and b/cinelerra-5.1/plugins/theme_blue_dot/data/proxy_s_hi.png differ diff --git a/cinelerra-5.1/plugins/theme_blue_dot/data/proxy_s_up.png b/cinelerra-5.1/plugins/theme_blue_dot/data/proxy_s_up.png index 293360fc..a8e02bfc 100644 Binary files a/cinelerra-5.1/plugins/theme_blue_dot/data/proxy_s_up.png and b/cinelerra-5.1/plugins/theme_blue_dot/data/proxy_s_up.png differ diff --git a/cinelerra-5.1/plugins/theme_bright/data/proxy_p_chkd.png b/cinelerra-5.1/plugins/theme_bright/data/proxy_p_chkd.png index 7b87034d..2d7ce462 100644 Binary files a/cinelerra-5.1/plugins/theme_bright/data/proxy_p_chkd.png and b/cinelerra-5.1/plugins/theme_bright/data/proxy_p_chkd.png differ diff --git a/cinelerra-5.1/plugins/theme_bright/data/proxy_p_chkdhi.png b/cinelerra-5.1/plugins/theme_bright/data/proxy_p_chkdhi.png index 5fbec076..ad7f2f6c 100644 Binary files a/cinelerra-5.1/plugins/theme_bright/data/proxy_p_chkdhi.png and b/cinelerra-5.1/plugins/theme_bright/data/proxy_p_chkdhi.png differ diff --git a/cinelerra-5.1/plugins/theme_bright/data/proxy_p_down.png b/cinelerra-5.1/plugins/theme_bright/data/proxy_p_down.png index c64068ff..b4b443d0 100644 Binary files a/cinelerra-5.1/plugins/theme_bright/data/proxy_p_down.png and b/cinelerra-5.1/plugins/theme_bright/data/proxy_p_down.png differ diff --git a/cinelerra-5.1/plugins/theme_bright/data/proxy_p_hi.png b/cinelerra-5.1/plugins/theme_bright/data/proxy_p_hi.png index 8e098800..f607902f 100644 Binary files a/cinelerra-5.1/plugins/theme_bright/data/proxy_p_hi.png and b/cinelerra-5.1/plugins/theme_bright/data/proxy_p_hi.png differ diff --git a/cinelerra-5.1/plugins/theme_bright/data/proxy_p_up.png b/cinelerra-5.1/plugins/theme_bright/data/proxy_p_up.png index 1e8d2579..ac659593 100644 Binary files a/cinelerra-5.1/plugins/theme_bright/data/proxy_p_up.png and b/cinelerra-5.1/plugins/theme_bright/data/proxy_p_up.png differ diff --git a/cinelerra-5.1/plugins/theme_bright/data/proxy_s_chkd.png b/cinelerra-5.1/plugins/theme_bright/data/proxy_s_chkd.png index d8e4a2bf..8c8b6b7a 100644 Binary files a/cinelerra-5.1/plugins/theme_bright/data/proxy_s_chkd.png and b/cinelerra-5.1/plugins/theme_bright/data/proxy_s_chkd.png differ diff --git a/cinelerra-5.1/plugins/theme_bright/data/proxy_s_chkdhi.png b/cinelerra-5.1/plugins/theme_bright/data/proxy_s_chkdhi.png index 356d5c4a..a90fa9d0 100644 Binary files a/cinelerra-5.1/plugins/theme_bright/data/proxy_s_chkdhi.png and b/cinelerra-5.1/plugins/theme_bright/data/proxy_s_chkdhi.png differ diff --git a/cinelerra-5.1/plugins/theme_bright/data/proxy_s_down.png b/cinelerra-5.1/plugins/theme_bright/data/proxy_s_down.png index 919ec080..7ecffa32 100644 Binary files a/cinelerra-5.1/plugins/theme_bright/data/proxy_s_down.png and b/cinelerra-5.1/plugins/theme_bright/data/proxy_s_down.png differ diff --git a/cinelerra-5.1/plugins/theme_bright/data/proxy_s_hi.png b/cinelerra-5.1/plugins/theme_bright/data/proxy_s_hi.png index 7ed4e662..4663f003 100644 Binary files a/cinelerra-5.1/plugins/theme_bright/data/proxy_s_hi.png and b/cinelerra-5.1/plugins/theme_bright/data/proxy_s_hi.png differ diff --git a/cinelerra-5.1/plugins/theme_bright/data/proxy_s_up.png b/cinelerra-5.1/plugins/theme_bright/data/proxy_s_up.png index 293360fc..a8e02bfc 100644 Binary files a/cinelerra-5.1/plugins/theme_bright/data/proxy_s_up.png and b/cinelerra-5.1/plugins/theme_bright/data/proxy_s_up.png differ diff --git a/cinelerra-5.1/plugins/theme_hulk/data/proxy_p_chkd.png b/cinelerra-5.1/plugins/theme_hulk/data/proxy_p_chkd.png index 7b87034d..2d7ce462 100644 Binary files a/cinelerra-5.1/plugins/theme_hulk/data/proxy_p_chkd.png and b/cinelerra-5.1/plugins/theme_hulk/data/proxy_p_chkd.png differ diff --git a/cinelerra-5.1/plugins/theme_hulk/data/proxy_p_chkdhi.png b/cinelerra-5.1/plugins/theme_hulk/data/proxy_p_chkdhi.png index 5fbec076..ad7f2f6c 100644 Binary files a/cinelerra-5.1/plugins/theme_hulk/data/proxy_p_chkdhi.png and b/cinelerra-5.1/plugins/theme_hulk/data/proxy_p_chkdhi.png differ diff --git a/cinelerra-5.1/plugins/theme_hulk/data/proxy_p_down.png b/cinelerra-5.1/plugins/theme_hulk/data/proxy_p_down.png index c64068ff..b4b443d0 100644 Binary files a/cinelerra-5.1/plugins/theme_hulk/data/proxy_p_down.png and b/cinelerra-5.1/plugins/theme_hulk/data/proxy_p_down.png differ diff --git a/cinelerra-5.1/plugins/theme_hulk/data/proxy_p_hi.png b/cinelerra-5.1/plugins/theme_hulk/data/proxy_p_hi.png index 8e098800..f607902f 100644 Binary files a/cinelerra-5.1/plugins/theme_hulk/data/proxy_p_hi.png and b/cinelerra-5.1/plugins/theme_hulk/data/proxy_p_hi.png differ diff --git a/cinelerra-5.1/plugins/theme_hulk/data/proxy_p_up.png b/cinelerra-5.1/plugins/theme_hulk/data/proxy_p_up.png index 1e8d2579..ac659593 100644 Binary files a/cinelerra-5.1/plugins/theme_hulk/data/proxy_p_up.png and b/cinelerra-5.1/plugins/theme_hulk/data/proxy_p_up.png differ diff --git a/cinelerra-5.1/plugins/theme_hulk/data/proxy_s_chkd.png b/cinelerra-5.1/plugins/theme_hulk/data/proxy_s_chkd.png index d8e4a2bf..8c8b6b7a 100644 Binary files a/cinelerra-5.1/plugins/theme_hulk/data/proxy_s_chkd.png and b/cinelerra-5.1/plugins/theme_hulk/data/proxy_s_chkd.png differ diff --git a/cinelerra-5.1/plugins/theme_hulk/data/proxy_s_chkdhi.png b/cinelerra-5.1/plugins/theme_hulk/data/proxy_s_chkdhi.png index 356d5c4a..a90fa9d0 100644 Binary files a/cinelerra-5.1/plugins/theme_hulk/data/proxy_s_chkdhi.png and b/cinelerra-5.1/plugins/theme_hulk/data/proxy_s_chkdhi.png differ diff --git a/cinelerra-5.1/plugins/theme_hulk/data/proxy_s_down.png b/cinelerra-5.1/plugins/theme_hulk/data/proxy_s_down.png index 919ec080..7ecffa32 100644 Binary files a/cinelerra-5.1/plugins/theme_hulk/data/proxy_s_down.png and b/cinelerra-5.1/plugins/theme_hulk/data/proxy_s_down.png differ diff --git a/cinelerra-5.1/plugins/theme_hulk/data/proxy_s_hi.png b/cinelerra-5.1/plugins/theme_hulk/data/proxy_s_hi.png index 7ed4e662..4663f003 100644 Binary files a/cinelerra-5.1/plugins/theme_hulk/data/proxy_s_hi.png and b/cinelerra-5.1/plugins/theme_hulk/data/proxy_s_hi.png differ diff --git a/cinelerra-5.1/plugins/theme_hulk/data/proxy_s_up.png b/cinelerra-5.1/plugins/theme_hulk/data/proxy_s_up.png index 293360fc..a8e02bfc 100644 Binary files a/cinelerra-5.1/plugins/theme_hulk/data/proxy_s_up.png and b/cinelerra-5.1/plugins/theme_hulk/data/proxy_s_up.png differ diff --git a/cinelerra-5.1/plugins/theme_pinklady/data/proxy_p_chkd.png b/cinelerra-5.1/plugins/theme_pinklady/data/proxy_p_chkd.png index 7b87034d..2d7ce462 100644 Binary files a/cinelerra-5.1/plugins/theme_pinklady/data/proxy_p_chkd.png and b/cinelerra-5.1/plugins/theme_pinklady/data/proxy_p_chkd.png differ diff --git a/cinelerra-5.1/plugins/theme_pinklady/data/proxy_p_chkdhi.png b/cinelerra-5.1/plugins/theme_pinklady/data/proxy_p_chkdhi.png index 5fbec076..ad7f2f6c 100644 Binary files a/cinelerra-5.1/plugins/theme_pinklady/data/proxy_p_chkdhi.png and b/cinelerra-5.1/plugins/theme_pinklady/data/proxy_p_chkdhi.png differ diff --git a/cinelerra-5.1/plugins/theme_pinklady/data/proxy_p_down.png b/cinelerra-5.1/plugins/theme_pinklady/data/proxy_p_down.png index c64068ff..b4b443d0 100644 Binary files a/cinelerra-5.1/plugins/theme_pinklady/data/proxy_p_down.png and b/cinelerra-5.1/plugins/theme_pinklady/data/proxy_p_down.png differ diff --git a/cinelerra-5.1/plugins/theme_pinklady/data/proxy_p_hi.png b/cinelerra-5.1/plugins/theme_pinklady/data/proxy_p_hi.png index 8e098800..f607902f 100644 Binary files a/cinelerra-5.1/plugins/theme_pinklady/data/proxy_p_hi.png and b/cinelerra-5.1/plugins/theme_pinklady/data/proxy_p_hi.png differ diff --git a/cinelerra-5.1/plugins/theme_pinklady/data/proxy_p_up.png b/cinelerra-5.1/plugins/theme_pinklady/data/proxy_p_up.png index 1e8d2579..ac659593 100644 Binary files a/cinelerra-5.1/plugins/theme_pinklady/data/proxy_p_up.png and b/cinelerra-5.1/plugins/theme_pinklady/data/proxy_p_up.png differ diff --git a/cinelerra-5.1/plugins/theme_pinklady/data/proxy_s_chkd.png b/cinelerra-5.1/plugins/theme_pinklady/data/proxy_s_chkd.png index d8e4a2bf..8c8b6b7a 100644 Binary files a/cinelerra-5.1/plugins/theme_pinklady/data/proxy_s_chkd.png and b/cinelerra-5.1/plugins/theme_pinklady/data/proxy_s_chkd.png differ diff --git a/cinelerra-5.1/plugins/theme_pinklady/data/proxy_s_chkdhi.png b/cinelerra-5.1/plugins/theme_pinklady/data/proxy_s_chkdhi.png index 356d5c4a..a90fa9d0 100644 Binary files a/cinelerra-5.1/plugins/theme_pinklady/data/proxy_s_chkdhi.png and b/cinelerra-5.1/plugins/theme_pinklady/data/proxy_s_chkdhi.png differ diff --git a/cinelerra-5.1/plugins/theme_pinklady/data/proxy_s_down.png b/cinelerra-5.1/plugins/theme_pinklady/data/proxy_s_down.png index 919ec080..7ecffa32 100644 Binary files a/cinelerra-5.1/plugins/theme_pinklady/data/proxy_s_down.png and b/cinelerra-5.1/plugins/theme_pinklady/data/proxy_s_down.png differ diff --git a/cinelerra-5.1/plugins/theme_pinklady/data/proxy_s_hi.png b/cinelerra-5.1/plugins/theme_pinklady/data/proxy_s_hi.png index 7ed4e662..4663f003 100644 Binary files a/cinelerra-5.1/plugins/theme_pinklady/data/proxy_s_hi.png and b/cinelerra-5.1/plugins/theme_pinklady/data/proxy_s_hi.png differ diff --git a/cinelerra-5.1/plugins/theme_pinklady/data/proxy_s_up.png b/cinelerra-5.1/plugins/theme_pinklady/data/proxy_s_up.png index 293360fc..a8e02bfc 100644 Binary files a/cinelerra-5.1/plugins/theme_pinklady/data/proxy_s_up.png and b/cinelerra-5.1/plugins/theme_pinklady/data/proxy_s_up.png differ diff --git a/cinelerra-5.1/plugins/theme_suv/data/proxy_p_chkd.png b/cinelerra-5.1/plugins/theme_suv/data/proxy_p_chkd.png index 7b87034d..2d7ce462 100644 Binary files a/cinelerra-5.1/plugins/theme_suv/data/proxy_p_chkd.png and b/cinelerra-5.1/plugins/theme_suv/data/proxy_p_chkd.png differ diff --git a/cinelerra-5.1/plugins/theme_suv/data/proxy_p_chkdhi.png b/cinelerra-5.1/plugins/theme_suv/data/proxy_p_chkdhi.png index 5fbec076..ad7f2f6c 100644 Binary files a/cinelerra-5.1/plugins/theme_suv/data/proxy_p_chkdhi.png and b/cinelerra-5.1/plugins/theme_suv/data/proxy_p_chkdhi.png differ diff --git a/cinelerra-5.1/plugins/theme_suv/data/proxy_p_down.png b/cinelerra-5.1/plugins/theme_suv/data/proxy_p_down.png index c64068ff..b4b443d0 100644 Binary files a/cinelerra-5.1/plugins/theme_suv/data/proxy_p_down.png and b/cinelerra-5.1/plugins/theme_suv/data/proxy_p_down.png differ diff --git a/cinelerra-5.1/plugins/theme_suv/data/proxy_p_hi.png b/cinelerra-5.1/plugins/theme_suv/data/proxy_p_hi.png index 8e098800..f607902f 100644 Binary files a/cinelerra-5.1/plugins/theme_suv/data/proxy_p_hi.png and b/cinelerra-5.1/plugins/theme_suv/data/proxy_p_hi.png differ diff --git a/cinelerra-5.1/plugins/theme_suv/data/proxy_p_up.png b/cinelerra-5.1/plugins/theme_suv/data/proxy_p_up.png index 1e8d2579..ac659593 100644 Binary files a/cinelerra-5.1/plugins/theme_suv/data/proxy_p_up.png and b/cinelerra-5.1/plugins/theme_suv/data/proxy_p_up.png differ diff --git a/cinelerra-5.1/plugins/theme_suv/data/proxy_s_chkd.png b/cinelerra-5.1/plugins/theme_suv/data/proxy_s_chkd.png index d8e4a2bf..8c8b6b7a 100644 Binary files a/cinelerra-5.1/plugins/theme_suv/data/proxy_s_chkd.png and b/cinelerra-5.1/plugins/theme_suv/data/proxy_s_chkd.png differ diff --git a/cinelerra-5.1/plugins/theme_suv/data/proxy_s_chkdhi.png b/cinelerra-5.1/plugins/theme_suv/data/proxy_s_chkdhi.png index 356d5c4a..a90fa9d0 100644 Binary files a/cinelerra-5.1/plugins/theme_suv/data/proxy_s_chkdhi.png and b/cinelerra-5.1/plugins/theme_suv/data/proxy_s_chkdhi.png differ diff --git a/cinelerra-5.1/plugins/theme_suv/data/proxy_s_down.png b/cinelerra-5.1/plugins/theme_suv/data/proxy_s_down.png index 919ec080..7ecffa32 100644 Binary files a/cinelerra-5.1/plugins/theme_suv/data/proxy_s_down.png and b/cinelerra-5.1/plugins/theme_suv/data/proxy_s_down.png differ diff --git a/cinelerra-5.1/plugins/theme_suv/data/proxy_s_hi.png b/cinelerra-5.1/plugins/theme_suv/data/proxy_s_hi.png index 7ed4e662..4663f003 100644 Binary files a/cinelerra-5.1/plugins/theme_suv/data/proxy_s_hi.png and b/cinelerra-5.1/plugins/theme_suv/data/proxy_s_hi.png differ diff --git a/cinelerra-5.1/plugins/theme_suv/data/proxy_s_up.png b/cinelerra-5.1/plugins/theme_suv/data/proxy_s_up.png index 293360fc..a8e02bfc 100644 Binary files a/cinelerra-5.1/plugins/theme_suv/data/proxy_s_up.png and b/cinelerra-5.1/plugins/theme_suv/data/proxy_s_up.png differ diff --git a/cinelerra-5.1/plugins/theme_unflat/data/proxy_p_chkd.png b/cinelerra-5.1/plugins/theme_unflat/data/proxy_p_chkd.png index 7b87034d..2d7ce462 100644 Binary files a/cinelerra-5.1/plugins/theme_unflat/data/proxy_p_chkd.png and b/cinelerra-5.1/plugins/theme_unflat/data/proxy_p_chkd.png differ diff --git a/cinelerra-5.1/plugins/theme_unflat/data/proxy_p_chkdhi.png b/cinelerra-5.1/plugins/theme_unflat/data/proxy_p_chkdhi.png index 5fbec076..ad7f2f6c 100644 Binary files a/cinelerra-5.1/plugins/theme_unflat/data/proxy_p_chkdhi.png and b/cinelerra-5.1/plugins/theme_unflat/data/proxy_p_chkdhi.png differ diff --git a/cinelerra-5.1/plugins/theme_unflat/data/proxy_p_down.png b/cinelerra-5.1/plugins/theme_unflat/data/proxy_p_down.png index c64068ff..b4b443d0 100644 Binary files a/cinelerra-5.1/plugins/theme_unflat/data/proxy_p_down.png and b/cinelerra-5.1/plugins/theme_unflat/data/proxy_p_down.png differ diff --git a/cinelerra-5.1/plugins/theme_unflat/data/proxy_p_hi.png b/cinelerra-5.1/plugins/theme_unflat/data/proxy_p_hi.png index 8e098800..f607902f 100644 Binary files a/cinelerra-5.1/plugins/theme_unflat/data/proxy_p_hi.png and b/cinelerra-5.1/plugins/theme_unflat/data/proxy_p_hi.png differ diff --git a/cinelerra-5.1/plugins/theme_unflat/data/proxy_p_up.png b/cinelerra-5.1/plugins/theme_unflat/data/proxy_p_up.png index 1e8d2579..ac659593 100644 Binary files a/cinelerra-5.1/plugins/theme_unflat/data/proxy_p_up.png and b/cinelerra-5.1/plugins/theme_unflat/data/proxy_p_up.png differ diff --git a/cinelerra-5.1/plugins/theme_unflat/data/proxy_s_chkd.png b/cinelerra-5.1/plugins/theme_unflat/data/proxy_s_chkd.png index d8e4a2bf..8c8b6b7a 100644 Binary files a/cinelerra-5.1/plugins/theme_unflat/data/proxy_s_chkd.png and b/cinelerra-5.1/plugins/theme_unflat/data/proxy_s_chkd.png differ diff --git a/cinelerra-5.1/plugins/theme_unflat/data/proxy_s_chkdhi.png b/cinelerra-5.1/plugins/theme_unflat/data/proxy_s_chkdhi.png index 356d5c4a..a90fa9d0 100644 Binary files a/cinelerra-5.1/plugins/theme_unflat/data/proxy_s_chkdhi.png and b/cinelerra-5.1/plugins/theme_unflat/data/proxy_s_chkdhi.png differ diff --git a/cinelerra-5.1/plugins/theme_unflat/data/proxy_s_down.png b/cinelerra-5.1/plugins/theme_unflat/data/proxy_s_down.png index 919ec080..7ecffa32 100644 Binary files a/cinelerra-5.1/plugins/theme_unflat/data/proxy_s_down.png and b/cinelerra-5.1/plugins/theme_unflat/data/proxy_s_down.png differ diff --git a/cinelerra-5.1/plugins/theme_unflat/data/proxy_s_hi.png b/cinelerra-5.1/plugins/theme_unflat/data/proxy_s_hi.png index 7ed4e662..4663f003 100644 Binary files a/cinelerra-5.1/plugins/theme_unflat/data/proxy_s_hi.png and b/cinelerra-5.1/plugins/theme_unflat/data/proxy_s_hi.png differ diff --git a/cinelerra-5.1/plugins/theme_unflat/data/proxy_s_up.png b/cinelerra-5.1/plugins/theme_unflat/data/proxy_s_up.png index 293360fc..a8e02bfc 100644 Binary files a/cinelerra-5.1/plugins/theme_unflat/data/proxy_s_up.png and b/cinelerra-5.1/plugins/theme_unflat/data/proxy_s_up.png differ