Skip to content

Commit

Permalink
made tooltip prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
scut committed Jan 2, 2024
1 parent 5f0569b commit b3bf9f9
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions __init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from . import addon_updater_ops
from .fast64_internal.operators import AddWaterBox
from .fast64_internal.panels import SM64_Panel
from .fast64_internal.utility import PluginError, raisePluginError, attemptModifierApply, prop_split
from .fast64_internal.utility import PluginError, raisePluginError, attemptModifierApply, prop_split, multilineLabel

from .fast64_internal.sm64 import SM64_Properties, sm64_register, sm64_unregister
from .fast64_internal.sm64.sm64_geolayout_bone import SM64_BoneProperties
Expand Down Expand Up @@ -166,9 +166,7 @@ def draw(self, context):
col.prop(context.scene, "generateF3DNodeGraph", text="Generate F3D Node Graph For Materials")
col.prop(context.scene, "exportInlineF3D", text="Bleed and Inline Material Exports")
if context.scene.exportInlineF3D:
box = col.box()
box.label(text="While inlining, all meshes will be restored to world default values.", icon="INFO")
box.label(text="You can configure these values in the world properties tab.")
multilineLabel(col.box(), "While inlining, all meshes will be restored to world default values.\n You can configure these values in the world properties tab.", icon="INFO")
col.prop(context.scene, "decomp_compatible", invert_checkbox=True, text="Homebrew Compatibility")
col.prop(context.scene, "ignoreTextureRestrictions")
if context.scene.ignoreTextureRestrictions:
Expand Down

0 comments on commit b3bf9f9

Please sign in to comment.