forked from openlp/openlp
Select text in search field when it gains focus
Fixes: https://launchpad.net/bugs/1530340
This commit is contained in:
parent
607371a6d7
commit
c47d1bdca4
@ -254,6 +254,7 @@ class BibleMediaItem(MediaManagerItem):
|
||||
def on_focus(self):
|
||||
if self.quickTab.isVisible():
|
||||
self.quick_search_edit.setFocus()
|
||||
self.quick_search_edit.selectAll()
|
||||
else:
|
||||
self.advanced_book_combo_box.setFocus()
|
||||
|
||||
|
@ -208,6 +208,7 @@ class CustomMediaItem(MediaManagerItem):
|
||||
Set the focus
|
||||
"""
|
||||
self.search_text_edit.setFocus()
|
||||
self.search_text_edit.selectAll()
|
||||
|
||||
def generate_slide_data(self, service_item, item=None, xml_version=False,
|
||||
remote=False, context=ServiceItemContext.Service):
|
||||
|
@ -112,6 +112,7 @@ class SongMediaItem(MediaManagerItem):
|
||||
|
||||
def on_focus(self):
|
||||
self.search_text_edit.setFocus()
|
||||
self.search_text_edit.selectAll()
|
||||
|
||||
def config_update(self):
|
||||
"""
|
||||
|
Loading…
Reference in New Issue
Block a user