Moved GuiSliderProfile into core

This commit is contained in:
Tony 2020-07-27 10:57:08 -04:00
parent 48838494d4
commit 3d76cc4c12
3 changed files with 10 additions and 10 deletions

View file

Before

Width:  |  Height:  |  Size: 908 B

After

Width:  |  Height:  |  Size: 908 B

Before After
Before After

View file

@ -224,3 +224,13 @@ new GuiControlProfile( GuiButtonProfile )
hasBitmapArray = false;
category = "Core";
};
// ---------------------------------------------------------------------------
// Slider control
// ---------------------------------------------------------------------------
if( !isObject( GuiSliderProfile ) )
new GuiControlProfile( GuiSliderProfile )
{
bitmap = "core/gui/images/slider";
category = "Core";
};

View file

@ -467,16 +467,6 @@ new GuiControlProfile( GuiRadioProfile )
category = "Core";
};
// ---------------------------------------------------------------------------
// Slider control
// ---------------------------------------------------------------------------
if( !isObject( GuiSliderProfile ) )
new GuiControlProfile( GuiSliderProfile )
{
bitmap = "data/ui/images/slider";
category = "Core";
};
//
// Scroll Profile
//