From: Garux Date: Wed, 2 Aug 2017 06:12:17 +0000 (+0300) Subject: Radiant: X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=f79ac495d0735b0002068bd1284bf7918b6f6598;p=xonotic%2Fnetradiant.git Radiant: misc... * fix: texBro & tags treeviews scroll focus follows folder selection; (text search shortcut is ctrl+f on windows) * fix: detached tags menu appearence * new icon --- diff --git a/icons/radiant.ico b/icons/radiant.ico index d377f825..6492cb09 100644 Binary files a/icons/radiant.ico and b/icons/radiant.ico differ diff --git a/icons/radiant_net.ico b/icons/radiant_net.ico new file mode 100644 index 00000000..d377f825 Binary files /dev/null and b/icons/radiant_net.ico differ diff --git a/radiant/gtkdlgs.cpp b/radiant/gtkdlgs.cpp index d4473b40..32ee3f3e 100644 --- a/radiant/gtkdlgs.cpp +++ b/radiant/gtkdlgs.cpp @@ -498,12 +498,13 @@ void DoAbout(){ GtkVBox* vbox2 = create_dialog_vbox( 4 ); gtk_box_pack_start( GTK_BOX( hbox ), GTK_WIDGET( vbox2 ), TRUE, FALSE, 0 ); { - GtkFrame* frame = create_dialog_frame( 0, GTK_SHADOW_IN ); - gtk_box_pack_start( GTK_BOX( vbox2 ), GTK_WIDGET( frame ), FALSE, FALSE, 0 ); + //GtkFrame* frame = create_dialog_frame( 0, GTK_SHADOW_IN ); + //gtk_box_pack_start( GTK_BOX( vbox2 ), GTK_WIDGET( frame ), FALSE, FALSE, 0 ); { GtkImage* image = new_local_image( "logo.png" ); gtk_widget_show( GTK_WIDGET( image ) ); - gtk_container_add( GTK_CONTAINER( frame ), GTK_WIDGET( image ) ); + gtk_box_pack_start( GTK_BOX( vbox2 ), GTK_WIDGET( image ), FALSE, FALSE, 0 ); + //gtk_container_add( GTK_CONTAINER( frame ), GTK_WIDGET( image ) ); } } } diff --git a/radiant/mainframe.cpp b/radiant/mainframe.cpp index 8d07afe6..2f3db714 100644 --- a/radiant/mainframe.cpp +++ b/radiant/mainframe.cpp @@ -2727,6 +2727,13 @@ GtkWindow* create_splash(){ gtk_widget_show( GTK_WIDGET( image ) ); gtk_container_add( GTK_CONTAINER( window ), GTK_WIDGET( image ) ); + if( gtk_image_get_storage_type( image ) == GTK_IMAGE_PIXBUF ){ + GdkBitmap* mask; + GdkPixbuf* pix = gtk_image_get_pixbuf( image ); + gdk_pixbuf_render_pixmap_and_mask( pix, NULL, &mask, 255 ); + gtk_widget_shape_combine_mask ( GTK_WIDGET( window ), mask, 0, 0 ); + } + gtk_widget_set_size_request( GTK_WIDGET( window ), -1, -1 ); gtk_widget_show( GTK_WIDGET( window ) ); diff --git a/radiant/texwindow.cpp b/radiant/texwindow.cpp index 819d4bc3..ef2ae005 100644 --- a/radiant/texwindow.cpp +++ b/radiant/texwindow.cpp @@ -2117,7 +2117,8 @@ GtkWidget* TextureBrowser_constructWindow( GtkWindow* toplevel ){ TextureBrowser_createTreeViewTree(); - gtk_scrolled_window_add_with_viewport( GTK_SCROLLED_WINDOW( g_TextureBrowser.m_scr_win_tree ), GTK_WIDGET( g_TextureBrowser.m_treeViewTree ) ); + //gtk_scrolled_window_add_with_viewport( GTK_SCROLLED_WINDOW( g_TextureBrowser.m_scr_win_tree ), GTK_WIDGET( g_TextureBrowser.m_treeViewTree ) ); + gtk_container_add( GTK_CONTAINER( g_TextureBrowser.m_scr_win_tree ), GTK_WIDGET( g_TextureBrowser.m_treeViewTree ) ); gtk_widget_show( GTK_WIDGET( g_TextureBrowser.m_treeViewTree ) ); } { // gl_widget scrollbar @@ -2162,6 +2163,7 @@ GtkWidget* TextureBrowser_constructWindow( GtkWindow* toplevel ){ } { // tag menu bar GtkWidget* menu_tags = gtk_menu_new(); + gtk_menu_set_title( GTK_MENU( menu_tags ), "Tags" ); //GtkWidget* tags_item = (GtkWidget*) TextureBrowser_constructTagsMenu( GTK_MENU( menu_tags ) ); //gtk_menu_item_set_submenu( GTK_MENU_ITEM( tags_item ), menu_tags ); @@ -2180,6 +2182,9 @@ GtkWidget* TextureBrowser_constructWindow( GtkWindow* toplevel ){ GTK_WIDGET_UNSET_FLAGS( GTK_WIDGET( button ), GTK_CAN_DEFAULT ); gtk_toolbar_append_element( toolbar, GTK_TOOLBAR_CHILD_WIDGET, GTK_WIDGET( button ), "", "Tags", "", 0, 0, 0 ); g_signal_connect( G_OBJECT( button ), "clicked", G_CALLBACK( Popup_View_Menu ), menu_tags ); + + //to show detached menu over floating tex bro and main wnd... + gtk_menu_attach_to_widget( GTK_MENU( menu_tags ), GTK_WIDGET( button ), NULL ); } { // Tag TreeView g_TextureBrowser.m_scr_win_tags = gtk_scrolled_window_new( NULL, NULL ); @@ -2193,7 +2198,8 @@ GtkWidget* TextureBrowser_constructWindow( GtkWindow* toplevel ){ GtkTreeSelection* selection = gtk_tree_view_get_selection( GTK_TREE_VIEW( g_TextureBrowser.m_treeViewTags ) ); gtk_tree_selection_set_mode( selection, GTK_SELECTION_MULTIPLE ); - gtk_scrolled_window_add_with_viewport( GTK_SCROLLED_WINDOW( g_TextureBrowser.m_scr_win_tags ), GTK_WIDGET( g_TextureBrowser.m_treeViewTags ) ); + //gtk_scrolled_window_add_with_viewport( GTK_SCROLLED_WINDOW( g_TextureBrowser.m_scr_win_tags ), GTK_WIDGET( g_TextureBrowser.m_treeViewTags ) ); + gtk_container_add( GTK_CONTAINER( g_TextureBrowser.m_scr_win_tags ), GTK_WIDGET( g_TextureBrowser.m_treeViewTags ) ); gtk_widget_show( GTK_WIDGET( g_TextureBrowser.m_treeViewTags ) ); } { // Texture/Tag notebook @@ -2242,7 +2248,8 @@ GtkWidget* TextureBrowser_constructWindow( GtkWindow* toplevel ){ gtk_widget_show( g_TextureBrowser.m_assigned_tree ); gtk_widget_show( scrolled_win ); - gtk_scrolled_window_add_with_viewport( GTK_SCROLLED_WINDOW( scrolled_win ), GTK_WIDGET( g_TextureBrowser.m_assigned_tree ) ); + //gtk_scrolled_window_add_with_viewport( GTK_SCROLLED_WINDOW( scrolled_win ), GTK_WIDGET( g_TextureBrowser.m_assigned_tree ) ); + gtk_container_add( GTK_CONTAINER( scrolled_win ), GTK_WIDGET( g_TextureBrowser.m_assigned_tree ) ); gtk_table_attach( GTK_TABLE( frame_table ), scrolled_win, 0, 1, 1, 3, GTK_FILL, GTK_FILL, 0, 0 ); } @@ -2270,7 +2277,8 @@ GtkWidget* TextureBrowser_constructWindow( GtkWindow* toplevel ){ gtk_widget_show( g_TextureBrowser.m_available_tree ); gtk_widget_show( scrolled_win ); - gtk_scrolled_window_add_with_viewport( GTK_SCROLLED_WINDOW( scrolled_win ), GTK_WIDGET( g_TextureBrowser.m_available_tree ) ); + //gtk_scrolled_window_add_with_viewport( GTK_SCROLLED_WINDOW( scrolled_win ), GTK_WIDGET( g_TextureBrowser.m_available_tree ) ); + gtk_container_add( GTK_CONTAINER( scrolled_win ), GTK_WIDGET( g_TextureBrowser.m_available_tree ) ); gtk_table_attach( GTK_TABLE( frame_table ), scrolled_win, 2, 3, 1, 3, GTK_FILL, GTK_FILL, 0, 0 ); } diff --git a/setup/data/tools-src/black.png b/setup/data/tools-src/black.png new file mode 100644 index 00000000..6d3e4549 Binary files /dev/null and b/setup/data/tools-src/black.png differ diff --git a/setup/data/tools-src/brush_flipx.png b/setup/data/tools-src/brush_flipx.png new file mode 100644 index 00000000..62073396 Binary files /dev/null and b/setup/data/tools-src/brush_flipx.png differ diff --git a/setup/data/tools-src/brush_flipy.png b/setup/data/tools-src/brush_flipy.png new file mode 100644 index 00000000..ce537f3e Binary files /dev/null and b/setup/data/tools-src/brush_flipy.png differ diff --git a/setup/data/tools-src/brush_flipz.png b/setup/data/tools-src/brush_flipz.png new file mode 100644 index 00000000..d2d0708d Binary files /dev/null and b/setup/data/tools-src/brush_flipz.png differ diff --git a/setup/data/tools-src/brush_rotatex.png b/setup/data/tools-src/brush_rotatex.png new file mode 100644 index 00000000..cd1e1a5a Binary files /dev/null and b/setup/data/tools-src/brush_rotatex.png differ diff --git a/setup/data/tools-src/brush_rotatey.png b/setup/data/tools-src/brush_rotatey.png new file mode 100644 index 00000000..907210e4 Binary files /dev/null and b/setup/data/tools-src/brush_rotatey.png differ diff --git a/setup/data/tools-src/brush_rotatez.png b/setup/data/tools-src/brush_rotatez.png new file mode 100644 index 00000000..92edb044 Binary files /dev/null and b/setup/data/tools-src/brush_rotatez.png differ diff --git a/setup/data/tools-src/dontselectcurve.png b/setup/data/tools-src/dontselectcurve.png new file mode 100644 index 00000000..66254df8 Binary files /dev/null and b/setup/data/tools-src/dontselectcurve.png differ diff --git a/setup/data/tools-src/dontselectmodel.png b/setup/data/tools-src/dontselectmodel.png new file mode 100644 index 00000000..82c472a1 Binary files /dev/null and b/setup/data/tools-src/dontselectmodel.png differ diff --git a/setup/data/tools-src/f-decals.png b/setup/data/tools-src/f-decals.png new file mode 100644 index 00000000..a07fa5d0 Binary files /dev/null and b/setup/data/tools-src/f-decals.png differ diff --git a/setup/data/tools-src/f-invert.png b/setup/data/tools-src/f-invert.png new file mode 100644 index 00000000..0b9f0f29 Binary files /dev/null and b/setup/data/tools-src/f-invert.png differ diff --git a/setup/data/tools-src/icon_net.png b/setup/data/tools-src/icon_net.png new file mode 100644 index 00000000..15fcf029 Binary files /dev/null and b/setup/data/tools-src/icon_net.png differ diff --git a/setup/data/tools-src/lightinspector.png b/setup/data/tools-src/lightinspector.png new file mode 100644 index 00000000..93688b37 Binary files /dev/null and b/setup/data/tools-src/lightinspector.png differ diff --git a/setup/data/tools-src/logo_net.png b/setup/data/tools-src/logo_net.png new file mode 100644 index 00000000..fd5afd4b Binary files /dev/null and b/setup/data/tools-src/logo_net.png differ diff --git a/setup/data/tools-src/noFalloff.png b/setup/data/tools-src/noFalloff.png new file mode 100644 index 00000000..55c6a801 Binary files /dev/null and b/setup/data/tools-src/noFalloff.png differ diff --git a/setup/data/tools-src/patch_bend.png b/setup/data/tools-src/patch_bend.png new file mode 100644 index 00000000..62eb7563 Binary files /dev/null and b/setup/data/tools-src/patch_bend.png differ diff --git a/setup/data/tools-src/patch_drilldown.png b/setup/data/tools-src/patch_drilldown.png new file mode 100644 index 00000000..1794a137 Binary files /dev/null and b/setup/data/tools-src/patch_drilldown.png differ diff --git a/setup/data/tools-src/patch_insdel.png b/setup/data/tools-src/patch_insdel.png new file mode 100644 index 00000000..362285ec Binary files /dev/null and b/setup/data/tools-src/patch_insdel.png differ diff --git a/setup/data/tools-src/patch_showboundingbox.png b/setup/data/tools-src/patch_showboundingbox.png new file mode 100644 index 00000000..891f3c7a Binary files /dev/null and b/setup/data/tools-src/patch_showboundingbox.png differ diff --git a/setup/data/tools-src/patch_weld.png b/setup/data/tools-src/patch_weld.png new file mode 100644 index 00000000..3d53a6ba Binary files /dev/null and b/setup/data/tools-src/patch_weld.png differ diff --git a/setup/data/tools-src/popup_selection.png b/setup/data/tools-src/popup_selection.png new file mode 100644 index 00000000..217fa824 Binary files /dev/null and b/setup/data/tools-src/popup_selection.png differ diff --git a/setup/data/tools-src/scalelockx.png b/setup/data/tools-src/scalelockx.png new file mode 100644 index 00000000..9714120d Binary files /dev/null and b/setup/data/tools-src/scalelockx.png differ diff --git a/setup/data/tools-src/scalelocky.png b/setup/data/tools-src/scalelocky.png new file mode 100644 index 00000000..78362428 Binary files /dev/null and b/setup/data/tools-src/scalelocky.png differ diff --git a/setup/data/tools-src/scalelockz.png b/setup/data/tools-src/scalelockz.png new file mode 100644 index 00000000..f9676807 Binary files /dev/null and b/setup/data/tools-src/scalelockz.png differ diff --git a/setup/data/tools-src/selection_makehollow.png b/setup/data/tools-src/selection_makehollow.png new file mode 100644 index 00000000..58426901 Binary files /dev/null and b/setup/data/tools-src/selection_makehollow.png differ diff --git a/setup/data/tools-src/selection_selectcompletetall.png b/setup/data/tools-src/selection_selectcompletetall.png new file mode 100644 index 00000000..3f5813ed Binary files /dev/null and b/setup/data/tools-src/selection_selectcompletetall.png differ diff --git a/setup/data/tools-src/selection_selectcompletetall_old.png b/setup/data/tools-src/selection_selectcompletetall_old.png new file mode 100644 index 00000000..3f55564d Binary files /dev/null and b/setup/data/tools-src/selection_selectcompletetall_old.png differ diff --git a/setup/data/tools-src/selection_selectpartialtall.png b/setup/data/tools-src/selection_selectpartialtall.png new file mode 100644 index 00000000..e378e47e Binary files /dev/null and b/setup/data/tools-src/selection_selectpartialtall.png differ diff --git a/setup/data/tools-src/selection_selectpartialtall_old.png b/setup/data/tools-src/selection_selectpartialtall_old.png new file mode 100644 index 00000000..ab1dfc7a Binary files /dev/null and b/setup/data/tools-src/selection_selectpartialtall_old.png differ diff --git a/setup/data/tools-src/show_entities.png b/setup/data/tools-src/show_entities.png new file mode 100644 index 00000000..97bc49b5 Binary files /dev/null and b/setup/data/tools-src/show_entities.png differ diff --git a/setup/data/tools-src/splash_net.png b/setup/data/tools-src/splash_net.png new file mode 100644 index 00000000..af09ccd8 Binary files /dev/null and b/setup/data/tools-src/splash_net.png differ diff --git a/setup/data/tools-src/textures_popup.png b/setup/data/tools-src/textures_popup.png new file mode 100644 index 00000000..b238679a Binary files /dev/null and b/setup/data/tools-src/textures_popup.png differ diff --git a/setup/data/tools-src/view_cameratoggle.png b/setup/data/tools-src/view_cameratoggle.png new file mode 100644 index 00000000..375e3de7 Binary files /dev/null and b/setup/data/tools-src/view_cameratoggle.png differ diff --git a/setup/data/tools-src/view_cameraupdate.png b/setup/data/tools-src/view_cameraupdate.png new file mode 100644 index 00000000..62aa2282 Binary files /dev/null and b/setup/data/tools-src/view_cameraupdate.png differ diff --git a/setup/data/tools-src/white.png b/setup/data/tools-src/white.png new file mode 100644 index 00000000..4af01bde Binary files /dev/null and b/setup/data/tools-src/white.png differ diff --git a/setup/data/tools/bitmaps/black.png b/setup/data/tools/bitmaps/black.png deleted file mode 100644 index 6d3e4549..00000000 Binary files a/setup/data/tools/bitmaps/black.png and /dev/null differ diff --git a/setup/data/tools/bitmaps/brush_flipx.png b/setup/data/tools/bitmaps/brush_flipx.png deleted file mode 100644 index 62073396..00000000 Binary files a/setup/data/tools/bitmaps/brush_flipx.png and /dev/null differ diff --git a/setup/data/tools/bitmaps/brush_flipy.png b/setup/data/tools/bitmaps/brush_flipy.png deleted file mode 100644 index ce537f3e..00000000 Binary files a/setup/data/tools/bitmaps/brush_flipy.png and /dev/null differ diff --git a/setup/data/tools/bitmaps/brush_flipz.png b/setup/data/tools/bitmaps/brush_flipz.png deleted file mode 100644 index d2d0708d..00000000 Binary files a/setup/data/tools/bitmaps/brush_flipz.png and /dev/null differ diff --git a/setup/data/tools/bitmaps/brush_rotatex.png b/setup/data/tools/bitmaps/brush_rotatex.png deleted file mode 100644 index cd1e1a5a..00000000 Binary files a/setup/data/tools/bitmaps/brush_rotatex.png and /dev/null differ diff --git a/setup/data/tools/bitmaps/brush_rotatey.png b/setup/data/tools/bitmaps/brush_rotatey.png deleted file mode 100644 index 907210e4..00000000 Binary files a/setup/data/tools/bitmaps/brush_rotatey.png and /dev/null differ diff --git a/setup/data/tools/bitmaps/brush_rotatez.png b/setup/data/tools/bitmaps/brush_rotatez.png deleted file mode 100644 index 92edb044..00000000 Binary files a/setup/data/tools/bitmaps/brush_rotatez.png and /dev/null differ diff --git a/setup/data/tools/bitmaps/dontselectcurve.png b/setup/data/tools/bitmaps/dontselectcurve.png deleted file mode 100644 index 66254df8..00000000 Binary files a/setup/data/tools/bitmaps/dontselectcurve.png and /dev/null differ diff --git a/setup/data/tools/bitmaps/dontselectmodel.png b/setup/data/tools/bitmaps/dontselectmodel.png deleted file mode 100644 index 82c472a1..00000000 Binary files a/setup/data/tools/bitmaps/dontselectmodel.png and /dev/null differ diff --git a/setup/data/tools/bitmaps/f-decals.png b/setup/data/tools/bitmaps/f-decals.png deleted file mode 100644 index a07fa5d0..00000000 Binary files a/setup/data/tools/bitmaps/f-decals.png and /dev/null differ diff --git a/setup/data/tools/bitmaps/f-invert.png b/setup/data/tools/bitmaps/f-invert.png deleted file mode 100644 index 0b9f0f29..00000000 Binary files a/setup/data/tools/bitmaps/f-invert.png and /dev/null differ diff --git a/setup/data/tools/bitmaps/icon.png b/setup/data/tools/bitmaps/icon.png index 15fcf029..b0219e8e 100644 Binary files a/setup/data/tools/bitmaps/icon.png and b/setup/data/tools/bitmaps/icon.png differ diff --git a/setup/data/tools/bitmaps/lightinspector.png b/setup/data/tools/bitmaps/lightinspector.png deleted file mode 100644 index 93688b37..00000000 Binary files a/setup/data/tools/bitmaps/lightinspector.png and /dev/null differ diff --git a/setup/data/tools/bitmaps/logo.png b/setup/data/tools/bitmaps/logo.png index fd5afd4b..533933e5 100644 Binary files a/setup/data/tools/bitmaps/logo.png and b/setup/data/tools/bitmaps/logo.png differ diff --git a/setup/data/tools/bitmaps/noFalloff.png b/setup/data/tools/bitmaps/noFalloff.png deleted file mode 100644 index 55c6a801..00000000 Binary files a/setup/data/tools/bitmaps/noFalloff.png and /dev/null differ diff --git a/setup/data/tools/bitmaps/patch_bend.png b/setup/data/tools/bitmaps/patch_bend.png deleted file mode 100644 index 62eb7563..00000000 Binary files a/setup/data/tools/bitmaps/patch_bend.png and /dev/null differ diff --git a/setup/data/tools/bitmaps/patch_drilldown.png b/setup/data/tools/bitmaps/patch_drilldown.png deleted file mode 100644 index 1794a137..00000000 Binary files a/setup/data/tools/bitmaps/patch_drilldown.png and /dev/null differ diff --git a/setup/data/tools/bitmaps/patch_insdel.png b/setup/data/tools/bitmaps/patch_insdel.png deleted file mode 100644 index 362285ec..00000000 Binary files a/setup/data/tools/bitmaps/patch_insdel.png and /dev/null differ diff --git a/setup/data/tools/bitmaps/patch_showboundingbox.png b/setup/data/tools/bitmaps/patch_showboundingbox.png deleted file mode 100644 index 891f3c7a..00000000 Binary files a/setup/data/tools/bitmaps/patch_showboundingbox.png and /dev/null differ diff --git a/setup/data/tools/bitmaps/patch_weld.png b/setup/data/tools/bitmaps/patch_weld.png deleted file mode 100644 index 3d53a6ba..00000000 Binary files a/setup/data/tools/bitmaps/patch_weld.png and /dev/null differ diff --git a/setup/data/tools/bitmaps/popup_selection.png b/setup/data/tools/bitmaps/popup_selection.png deleted file mode 100644 index 217fa824..00000000 Binary files a/setup/data/tools/bitmaps/popup_selection.png and /dev/null differ diff --git a/setup/data/tools/bitmaps/scalelockx.png b/setup/data/tools/bitmaps/scalelockx.png deleted file mode 100644 index 9714120d..00000000 Binary files a/setup/data/tools/bitmaps/scalelockx.png and /dev/null differ diff --git a/setup/data/tools/bitmaps/scalelocky.png b/setup/data/tools/bitmaps/scalelocky.png deleted file mode 100644 index 78362428..00000000 Binary files a/setup/data/tools/bitmaps/scalelocky.png and /dev/null differ diff --git a/setup/data/tools/bitmaps/scalelockz.png b/setup/data/tools/bitmaps/scalelockz.png deleted file mode 100644 index f9676807..00000000 Binary files a/setup/data/tools/bitmaps/scalelockz.png and /dev/null differ diff --git a/setup/data/tools/bitmaps/selection_makehollow.png b/setup/data/tools/bitmaps/selection_makehollow.png deleted file mode 100644 index 58426901..00000000 Binary files a/setup/data/tools/bitmaps/selection_makehollow.png and /dev/null differ diff --git a/setup/data/tools/bitmaps/selection_selectcompletetall.png b/setup/data/tools/bitmaps/selection_selectcompletetall.png deleted file mode 100644 index 3f5813ed..00000000 Binary files a/setup/data/tools/bitmaps/selection_selectcompletetall.png and /dev/null differ diff --git a/setup/data/tools/bitmaps/selection_selectcompletetall_old.png b/setup/data/tools/bitmaps/selection_selectcompletetall_old.png deleted file mode 100644 index 3f55564d..00000000 Binary files a/setup/data/tools/bitmaps/selection_selectcompletetall_old.png and /dev/null differ diff --git a/setup/data/tools/bitmaps/selection_selectpartialtall.png b/setup/data/tools/bitmaps/selection_selectpartialtall.png deleted file mode 100644 index e378e47e..00000000 Binary files a/setup/data/tools/bitmaps/selection_selectpartialtall.png and /dev/null differ diff --git a/setup/data/tools/bitmaps/selection_selectpartialtall_old.png b/setup/data/tools/bitmaps/selection_selectpartialtall_old.png deleted file mode 100644 index ab1dfc7a..00000000 Binary files a/setup/data/tools/bitmaps/selection_selectpartialtall_old.png and /dev/null differ diff --git a/setup/data/tools/bitmaps/show_entities.png b/setup/data/tools/bitmaps/show_entities.png deleted file mode 100644 index 97bc49b5..00000000 Binary files a/setup/data/tools/bitmaps/show_entities.png and /dev/null differ diff --git a/setup/data/tools/bitmaps/splash.png b/setup/data/tools/bitmaps/splash.png index af09ccd8..3e92376f 100644 Binary files a/setup/data/tools/bitmaps/splash.png and b/setup/data/tools/bitmaps/splash.png differ diff --git a/setup/data/tools/bitmaps/textures_popup.png b/setup/data/tools/bitmaps/textures_popup.png deleted file mode 100644 index b238679a..00000000 Binary files a/setup/data/tools/bitmaps/textures_popup.png and /dev/null differ diff --git a/setup/data/tools/bitmaps/view_cameratoggle.png b/setup/data/tools/bitmaps/view_cameratoggle.png deleted file mode 100644 index 375e3de7..00000000 Binary files a/setup/data/tools/bitmaps/view_cameratoggle.png and /dev/null differ diff --git a/setup/data/tools/bitmaps/view_cameraupdate.png b/setup/data/tools/bitmaps/view_cameraupdate.png deleted file mode 100644 index 62aa2282..00000000 Binary files a/setup/data/tools/bitmaps/view_cameraupdate.png and /dev/null differ diff --git a/setup/data/tools/bitmaps/white.png b/setup/data/tools/bitmaps/white.png deleted file mode 100644 index 4af01bde..00000000 Binary files a/setup/data/tools/bitmaps/white.png and /dev/null differ