mirror of
https://repo.dec05eba.com/gpu-screen-recorder-ui
synced 2026-05-07 23:20:26 +09:00
Use system default font
This commit is contained in:
Submodule depends/mglpp updated: 41d2ad6c42...a12ffa531d
@@ -2,6 +2,7 @@
|
|||||||
#include "../include/Config.hpp"
|
#include "../include/Config.hpp"
|
||||||
#include "../include/GsrInfo.hpp"
|
#include "../include/GsrInfo.hpp"
|
||||||
|
|
||||||
|
#include <mglpp/graphics/Text.hpp>
|
||||||
#include <cmath>
|
#include <cmath>
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
|
|
||||||
@@ -40,10 +41,14 @@ namespace gsr {
|
|||||||
window_width = window_size.x;
|
window_width = window_size.x;
|
||||||
window_height = window_size.y;
|
window_height = window_size.y;
|
||||||
|
|
||||||
theme->title_font_desc = std::string("Noto Sans Bold ") + std::to_string(std::round(std::max(16.0f, window_size.y * 0.019f)/1.8));
|
std::string default_font_name = mgl::Text::get_default_font_name();
|
||||||
theme->top_bar_font_desc = std::string("Noto Sans Bold ") + std::to_string(std::round(std::max(23.0f, window_size.y * 0.03f)/1.8));
|
if(default_font_name.empty())
|
||||||
theme->body_font_desc = std::string("Noto Sans ") + std::to_string(std::round(std::max(13.0f, window_size.y * 0.015f)/1.8));
|
default_font_name = "Sans";
|
||||||
theme->camera_setup_font_desc = "Noto Sans 14";
|
|
||||||
|
theme->title_font_desc = default_font_name + std::string(" Bold ") + std::to_string(std::round(std::max(16.0f, window_size.y * 0.019f)/1.8));
|
||||||
|
theme->top_bar_font_desc = default_font_name + std::string(" Bold ") + std::to_string(std::round(std::max(23.0f, window_size.y * 0.03f)/1.8));
|
||||||
|
theme->body_font_desc = default_font_name + std::string(" ") + std::to_string(std::round(std::max(13.0f, window_size.y * 0.015f)/1.8));
|
||||||
|
theme->camera_setup_font_desc = default_font_name + " 14";
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user