Clemapfel / Mousetrap.jl

Finally, a GUI Engine made for Julia

Home Page:https://clemens-cords.com/mousetrap

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Incorrect ColumnView setting function name

HyperSphereStudio opened this issue · comments

Main branch has at line 4168-4170. Set functions missing "!"

    @export_function ColumnView set_show_row_separators Cvoid Bool b
    @export_function ColumnView get_show_row_separators Bool
    @export_function ColumnView set_show_column_separators Cvoid Bool b

should be

    @export_function ColumnView set_show_row_separators! Cvoid Bool b
    @export_function ColumnView get_show_row_separators Bool
    @export_function ColumnView set_show_column_separators! Cvoid Bool b