Fix T37786: Curves: Geometry tab is missing

Was broken by rB2a55d68e1927 which inverted condition
in poll function for Geometry panel.
This commit is contained in:
Sergey Sharybin 2013-12-12 18:08:41 +06:00
parent abb7e9f09b
commit eb9d94f48b
Notes: blender-bot 2023-02-14 11:29:51 +01:00
Referenced by issue #37786, Curves: Geometry tab is missing
1 changed files with 1 additions and 1 deletions

View File

@ -154,7 +154,7 @@ class DATA_PT_curve_texture_space(CurveButtonsPanel, Panel):
layout.operator("curve.match_texture_space")
class DATA_PT_geometry_curve(CurveButtonsPanelSurface, Panel):
class DATA_PT_geometry_curve(CurveButtonsPanelCurve, Panel):
bl_label = "Geometry"
def draw(self, context):