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-12 11:51:23 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-06-12 11:52:27 +0300
commit6d152c599712bf4024b29f86a6050daba2919397 (patch)
tree869e330b152bd808c199c460959860defe714383 /release/scripts/startup/bl_ui/space_topbar.py
parent4bf331c0fcfebf211443bdd15181a334cdf1566b (diff)
UI: remove redo popover from topbar
See: T55039
Diffstat (limited to 'release/scripts/startup/bl_ui/space_topbar.py')
-rw-r--r--release/scripts/startup/bl_ui/space_topbar.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/release/scripts/startup/bl_ui/space_topbar.py b/release/scripts/startup/bl_ui/space_topbar.py
index 0171d98af0b..0126fcfc26a 100644
--- a/release/scripts/startup/bl_ui/space_topbar.py
+++ b/release/scripts/startup/bl_ui/space_topbar.py
@@ -262,17 +262,6 @@ class TOPBAR_HT_lower_bar(Header):
layout.prop(scene, "transform_orientation", text="")
- # Command Settings (redo)
- op = context.active_operator
- row = layout.row()
- row.enabled = op is not None
- row.popover(
- space_type='TOPBAR',
- region_type='HEADER',
- panel_type="TOPBAR_PT_redo",
- text=op.name + " Settings" if op else "Command Settings",
- )
-
class _draw_left_context_mode:
@staticmethod