diff --git a/openlp/core/lib/screen.py b/openlp/core/lib/screen.py index a527b3766..819ba9763 100644 --- a/openlp/core/lib/screen.py +++ b/openlp/core/lib/screen.py @@ -224,7 +224,7 @@ class ScreenList(object): y = window.y() + (window.height() // 2) for screen in self.screen_list: size = screen['size'] - if size.x() <= x <= (size.x() + size.width()) and size.y() <= y <= (size.y() + size.height()): + if x >= size.x() and x <= (size.x() + size.width()) and y >= size.y() and y <= (size.y() + size.height()): return screen['number'] def load_screen_settings(self): diff --git a/openlp/plugins/remotes/html/index.html b/openlp/plugins/remotes/html/index.html index dcdd8d33d..eb5ec2ff9 100644 --- a/openlp/plugins/remotes/html/index.html +++ b/openlp/plugins/remotes/html/index.html @@ -167,7 +167,7 @@

${options}

- + ${go_live} ${add_to_service} ${add_and_go_to_service}