Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2018-06-30 11:56:12 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-06-30 11:56:12 +0300
commitb89307acfd71955000662232b5964edcdfef5ccf (patch)
tree504c24627c2ebeb680439092b3205e859aac2cdf /source/blender/editors/interface/interface.c
parentea6fef938500f9405e7d6ff39297164b95d2811a (diff)
parenta42fd3de5d82deff4b7d9b1f14a58fd95d9d20ff (diff)
Merge branch 'master' into blender2.8
Diffstat (limited to 'source/blender/editors/interface/interface.c')
-rw-r--r--source/blender/editors/interface/interface.c22
1 files changed, 0 insertions, 22 deletions
diff --git a/source/blender/editors/interface/interface.c b/source/blender/editors/interface/interface.c
index f4c4b8afc94..834abc84c0d 100644
--- a/source/blender/editors/interface/interface.c
+++ b/source/blender/editors/interface/interface.c
@@ -105,18 +105,6 @@ static void ui_but_to_pixelrect(struct rcti *rect, const struct ARegion *ar, str
static void ui_but_free(const bContext *C, uiBut *but);
-bool ui_block_is_menu(const uiBlock *block)
-{
- return (((block->flag & UI_BLOCK_LOOP) != 0) &&
- /* non-menu popups use keep-open, so check this is off */
- ((block->flag & UI_BLOCK_KEEP_OPEN) == 0));
-}
-
-bool ui_block_is_pie_menu(const uiBlock *block)
-{
- return ((block->flag & UI_BLOCK_RADIAL) != 0);
-}
-
static bool ui_but_is_unit_radians_ex(UnitSettings *unit, const int unit_type)
{
return (unit->system_rotation == USER_UNIT_ROT_RADIANS && unit_type == PROP_UNIT_ROTATION);
@@ -4032,16 +4020,6 @@ int UI_blocklist_min_y_get(ListBase *lb)
return min;
}
-bool UI_block_is_empty(const uiBlock *block)
-{
- for (const uiBut *but = block->buttons.first; but; but = but->next) {
- if (!ELEM(but->type, UI_BTYPE_SEPR, UI_BTYPE_SEPR_LINE)) {
- return false;
- }
- }
- return true;
-}
-
void UI_block_direction_set(uiBlock *block, char direction)
{
block->direction = direction;