plugins.*: use defaultNullOpts.mkProportion wherever possible

This commit is contained in:
Gaetan Lepage 2025-01-03 23:09:34 +01:00
parent 2e600f5796
commit 24ac8f651d
11 changed files with 31 additions and 37 deletions

View file

@ -183,13 +183,13 @@ in
'';
summary = {
widthPercentage =
helpers.defaultNullOpts.mkNullable (types.numbers.between 0.0 1.0) 0.7
"Width of the pop-up window.";
widthPercentage = helpers.defaultNullOpts.mkProportion 0.7 ''
Width of the pop-up window.
'';
heightPercentage =
helpers.defaultNullOpts.mkNullable (types.numbers.between 0.0 1.0) 0.5
"Height of the pop-up window.";
heightPercentage = helpers.defaultNullOpts.mkProportion 0.5 ''
Height of the pop-up window.
'';
borders = mapAttrs (optionName: default: helpers.defaultNullOpts.mkStr default "") {
topleft = "";