From d8acac6ba9f0b165218bc869fbcb6a5180b87a5c Mon Sep 17 00:00:00 2001 From: dec05eba Date: Sat, 25 Jan 2025 20:00:51 +0100 Subject: Minor visual change --- README.md | 2 +- meson.build | 2 +- src/gui/DropdownButton.cpp | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 6299c00..a28bcc3 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ These are the dependencies needed to build GPU Screen Recorder UI: ## Runtime dependencies There are also additional dependencies needed at runtime: -* [GPU Screen Recorder](https://git.dec05eba.com/gpu-screen-recorder/) (version 5.0.0 or greater) +* [GPU Screen Recorder](https://git.dec05eba.com/gpu-screen-recorder/) (version 5.0.0 or later) * [GPU Screen Recorder Notification](https://git.dec05eba.com/gpu-screen-recorder-notification/) ## Program behavior notes diff --git a/meson.build b/meson.build index 2f32b18..d9d16c9 100644 --- a/meson.build +++ b/meson.build @@ -52,7 +52,7 @@ datadir = get_option('datadir') gsr_ui_resources_path = join_paths(prefix, datadir, 'gsr-ui') add_project_arguments('-DGSR_UI_VERSION="' + meson.project_version() + '"', language: ['c', 'cpp']) -add_project_arguments('-DGSR_FLATPAK_VERSION="5.1.0"', language: ['c', 'cpp']) +add_project_arguments('-DGSR_FLATPAK_VERSION="5.1.1"', language: ['c', 'cpp']) executable( meson.project_name(), diff --git a/src/gui/DropdownButton.cpp b/src/gui/DropdownButton.cpp index 4a2ae3a..81bc015 100644 --- a/src/gui/DropdownButton.cpp +++ b/src/gui/DropdownButton.cpp @@ -20,7 +20,7 @@ namespace gsr { { if(icon_texture && icon_texture->is_valid()) { icon_sprite.set_texture(icon_texture); - icon_sprite.set_height((int)(size.y * 0.5f)); + icon_sprite.set_height((int)(size.y * 0.45f)); } this->description.set_color(mgl::Color(150, 150, 150)); } @@ -242,4 +242,4 @@ namespace gsr { update_if_dirty(); return size; } -} \ No newline at end of file +} -- cgit v1.2.3