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.

_______________________________________________
Mailing list: https://launchpad.net/~openlp-core
Post to     : openlp-core@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openlp-core
More help   : https://help.launchpad.net/ListHelp

Reply via email to