mirror of https://gitlab.com/bashrc2/epicyon
watermark width can be specified in config.json
parent
5200238861
commit
0dd00b1e20
|
@ -3854,6 +3854,15 @@ def _command_options() -> None:
|
||||||
if max_like_count is not None:
|
if max_like_count is not None:
|
||||||
argb.max_like_count = int(max_like_count)
|
argb.max_like_count = int(max_like_count)
|
||||||
|
|
||||||
|
watermark_width_percent = \
|
||||||
|
get_config_param(base_dir, 'watermarkWidthPercent')
|
||||||
|
if watermark_width_percent is not None:
|
||||||
|
argb.watermark_width_percent = int(watermark_width_percent)
|
||||||
|
if argb.watermark_width_percent < 1:
|
||||||
|
argb.watermark_width_percent = 1
|
||||||
|
if argb.watermark_width_percent > 100:
|
||||||
|
argb.watermark_width_percent = 100
|
||||||
|
|
||||||
show_publish_as_icon = \
|
show_publish_as_icon = \
|
||||||
get_config_param(base_dir, 'showPublishAsIcon')
|
get_config_param(base_dir, 'showPublishAsIcon')
|
||||||
if show_publish_as_icon is not None:
|
if show_publish_as_icon is not None:
|
||||||
|
|
Loading…
Reference in New Issue