-
Notifications
You must be signed in to change notification settings - Fork 581
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add shortcut/accelerator to SavedSearch Dialog Find button
- Loading branch information
1 parent
6b03074
commit 2ababd1
Showing
4 changed files
with
12 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/************************************************************************ | ||
** | ||
** Copyright (C) 2015-2022 Kevin B. Hendricks, Stratford, Ontario, Canada | ||
** Copyright (C) 2015-2024 Kevin B. Hendricks, Stratford, Ontario, Canada | ||
** Copyright (C) 2012 John Schember <[email protected]> | ||
** Copyright (C) 2012 Dave Heiland | ||
** Copyright (C) 2012 Grant Drake | ||
|
@@ -139,7 +139,7 @@ void SearchEditor::ShowMessage(const QString &message) | |
{ | ||
ui.Message->setText(message); | ||
ui.Message->repaint(); | ||
QApplication::processEvents(); | ||
// QApplication::processEvents(QEventLoop::ExcludeUserInputEvents); | ||
} | ||
|
||
bool SearchEditor::SaveData(QList<SearchEditorModel::searchEntry *> entries, QString filename) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
/************************************************************************ | ||
** | ||
** Copyright (C) 2022 Kevin B. Hendricks, Stratford Ontario Canada | ||
** Copyright (C) 2012 John Schember <[email protected]> | ||
** Copyright (C) 2012 Dave Heiland | ||
** Copyright (C) 2012 Grant Drake | ||
** Copyright (C) 2022-2024 Kevin B. Hendricks, Stratford Ontario Canada | ||
** Copyright (C) 2012 John Schember <[email protected]> | ||
** Copyright (C) 2012 Dave Heiland | ||
** Copyright (C) 2012 Grant Drake | ||
** | ||
** This file is part of Sigil. | ||
** | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/************************************************************************ | ||
** | ||
** Copyright (C) 2015-2021 Kevin B. Hendricks, Stratford Ontario Canada | ||
** Copyright (C) 2015-2024 Kevin B. Hendricks, Stratford Ontario Canada | ||
** Copyright (C) 2012 John Schember <[email protected]> | ||
** Copyright (C) 2012 Dave Heiland | ||
** Copyright (C) 2012 Grant Drake | ||
|
@@ -37,7 +37,7 @@ SearchEditorTreeView::SearchEditorTreeView(QWidget *parent) | |
setSelectionMode(QAbstractItemView::ExtendedSelection); | ||
setSelectionBehavior(QAbstractItemView::SelectRows); | ||
setSortingEnabled(false); | ||
setTabKeyNavigation(true); | ||
setTabKeyNavigation(false); | ||
setAutoExpandDelay(200); | ||
} | ||
|
||
|