summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibGUI/FontPickerDialog.gml
AgeCommit message (Collapse)Author
2022-06-10LibGUI: Use new DialogButton for consistencyFrHun
2022-02-13Userland: Run gml-formatIdan Horowitz
This brings the existing GML files up to spec with the new requirements
2022-02-07Meta+Userland: Run the GML formatter on CI and pre-commitkleines Filmröllchen
Now that the GML formatter is both perserving comments and also mostly agrees to the existing GML style, it can be used to auto-format all the GML files in the system. This commit does not only contain the scripts for running the formatting on CI and the pre-commit hook, but also initially formats all the existing GML files so that the hook is successfull.
2021-09-24LibGUI: Categorize font families by variant instead of weightthankyouverycool
FontPickerWeightModel is no longer necessary as variants contain weight as part of a complete typeface description. This fixes fonts not inventorying correctly in picker when they contained more than bold and regular typefaces. Weight mapping has been moved into LibGfx/FontStyleMapping.h
2021-04-16LibGUI: Allow arbitrary font size in FontPickerJames Triantafylos
This commit adds a SpinBox to the FontPicker dialog to allow users to set arbitrary font sizes (1 to 255 inclusive) for TTF fonts. The SpinBox is only visible when the user is selecting a TTF font.
2021-01-12Libraries: Move to Userland/Libraries/Andreas Kling