From 3f335ce3d446372eeb9ed87f7e117099c4d2dd6a Mon Sep 17 00:00:00 2001 From: Juan Linietsky Date: Tue, 11 Jun 2019 15:43:37 -0300 Subject: Texture refactor -Texture renamed to Texture2D -TextureLayered as base now inherits 2Darray, cubemap and cubemap array -Removed all references to flags in textures (they will go in the shader) -Texture3D gone for now (will come back later done properly) -Create base rasterizer for RenderDevice, RasterizerRD --- scene/gui/check_box.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'scene/gui/check_box.cpp') diff --git a/scene/gui/check_box.cpp b/scene/gui/check_box.cpp index 443121db32..89bd8ab0dd 100644 --- a/scene/gui/check_box.cpp +++ b/scene/gui/check_box.cpp @@ -33,10 +33,10 @@ #include "servers/visual_server.h" Size2 CheckBox::get_icon_size() const { - Ref checked = Control::get_icon("checked"); - Ref unchecked = Control::get_icon("unchecked"); - Ref radio_checked = Control::get_icon("radio_checked"); - Ref radio_unchecked = Control::get_icon("radio_unchecked"); + Ref checked = Control::get_icon("checked"); + Ref unchecked = Control::get_icon("unchecked"); + Ref radio_checked = Control::get_icon("radio_checked"); + Ref radio_unchecked = Control::get_icon("radio_unchecked"); Size2 tex_size = Size2(0, 0); if (!checked.is_null()) @@ -73,8 +73,8 @@ void CheckBox::_notification(int p_what) { RID ci = get_canvas_item(); - Ref on = Control::get_icon(is_radio() ? "radio_checked" : "checked"); - Ref off = Control::get_icon(is_radio() ? "radio_unchecked" : "unchecked"); + Ref on = Control::get_icon(is_radio() ? "radio_checked" : "checked"); + Ref off = Control::get_icon(is_radio() ? "radio_unchecked" : "unchecked"); Ref sb = get_stylebox("normal"); Vector2 ofs; -- cgit v1.2.3