diff options
author | Max Wipfli <mail@maxwipfli.ch> | 2021-05-19 21:50:27 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-05-20 22:10:45 +0200 |
commit | 621a4008e66102a27059e2e2fb4fb7603733829f (patch) | |
tree | 306189b88d928bb59eae16b5ccb252776ac324d3 /Userland/Applications | |
parent | 9dcc7a67e5d9bc584d732df14f8e9296f792425f (diff) | |
download | serenity-621a4008e66102a27059e2e2fb4fb7603733829f.zip |
FontEditor: Add tooltip to "Move Glyph" button
This adds a simple tooltip to the "Move Glyph" button to indicate its
functionality.
Diffstat (limited to 'Userland/Applications')
-rw-r--r-- | Userland/Applications/FontEditor/FontEditorWindow.gml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Applications/FontEditor/FontEditorWindow.gml b/Userland/Applications/FontEditor/FontEditorWindow.gml index 90cd70c3fe..dd69fc286b 100644 --- a/Userland/Applications/FontEditor/FontEditorWindow.gml +++ b/Userland/Applications/FontEditor/FontEditorWindow.gml @@ -47,6 +47,7 @@ @GUI::Button { name: "move_glyph_button" fixed_width: 22 + tooltip: "Move Glyph" button_style: "Coolbar" } } |