deep-entertainment / issues

Issue tracker for deep Entertainment projects
1 stars 0 forks source link

[EGOVENTURE] Configured color theme for Hints is not used in Notepad #14

Closed ThmsKnz closed 2 years ago

ThmsKnz commented 2 years ago

Describe the bug The color configured in the theme in Label -> Hints is not taken into account. Instead the color of Goals is also used for Hints.

How to fix: In notepad.gd line 31-37 replace

    $Control/Hints.add_color_override(
        "font_color",
        $Control/Goals.get_color(
            "goals",
            "Label"
        )
    )

with

    $Control/Hints.add_color_override(
        "font_color",
        $Control/Hints.get_color(
            "hints",
            "Label"
        )
    )
dploeger commented 2 years ago

Awesome! Thanks. Fixed it.