openlp-core team mailing list archive
-
openlp-core team
-
Mailing list archive
-
Message #34414
Re: [Merge] lp:~trb143/openlp/alpha_fixes into lp:openlp
One more, sorry I didn't mention it earlier
Diff comments:
> === modified file 'openlp/core/common/settings.py'
> --- openlp/core/common/settings.py 2019-06-21 20:53:42 +0000
> +++ openlp/core/common/settings.py 2019-08-04 14:06:37 +0000
> @@ -90,12 +90,13 @@
> number: {
> 'number': number,
> geometry_key: {
> - 'x': x_position,
> - 'y': y_position,
> - 'height': height,
> - 'width': width
> + 'x': int(x_position),
> + 'y': int(y_position),
> + 'height': int(height),
> + 'width': int(width)
> },
> - 'is_display': is_display_screen
> + 'is_display': is_display_screen,
> + 'is_primary': number
Sorry, I'm failing to understand this line. `is_primary` would suggest Boolean. Looking at other uses in OpenLP this would suggest that is the case.
> }
> }
>
--
https://code.launchpad.net/~trb143/openlp/alpha_fixes/+merge/370937
Your team OpenLP Core is subscribed to branch lp:openlp.
References