Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
igagis committed Aug 20, 2024
1 parent 49d1a86 commit c9af5f9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,10 +100,10 @@ jobs:
fail-fast: false
matrix:
include:
- {os: debian, codename: bullseye, image_owner: }
# - {os: debian, codename: bullseye, image_owner: }
# - {os: debian, codename: bullseye, image_owner: , labels: [i386,docker]}
- {os: debian, codename: bullseye, image_owner: , labels: [arm32,docker]}
- {os: debian, codename: bullseye, image_owner: , labels: [arm64,docker]}
# - {os: debian, codename: bullseye, image_owner: , labels: [arm32,docker]}
# - {os: debian, codename: bullseye, image_owner: , labels: [arm64,docker]}
- {os: debian, codename: bookworm, image_owner: }
- {os: debian, codename: bookworm, image_owner: , labels: [arm32,docker]}
- {os: debian, codename: bookworm, image_owner: , labels: [arm64,docker]}
Expand Down
3 changes: 2 additions & 1 deletion src/bedsidemon/gui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,7 @@ utki::shared_ref<ruis::widget> bedsidemon::make_root_widgets(utki::shared_ref<ru
{
constexpr auto alarms_area_height = 70_pp;
constexpr auto buttons_area_height = 50_pp;
constexpr auto clock_area_width = 100_pp;

return
// clang-format off
Expand Down Expand Up @@ -173,7 +174,7 @@ utki::shared_ref<ruis::widget> bedsidemon::make_root_widgets(utki::shared_ref<ru
m::pile(c,
{
.layout_params = {
.dims = {100_pp, lp::min},
.dims = {clock_area_width, lp::min},
.align = {lp::align::center, lp::align::center}

}
Expand Down

0 comments on commit c9af5f9

Please sign in to comment.