summaryrefslogtreecommitdiffstats
path: root/mobile-widgets/qml
diff options
context:
space:
mode:
authorGravatar Berthold Stoeger <bstoeger@mail.tuwien.ac.at>2020-02-19 21:52:10 +0100
committerGravatar Dirk Hohndel <dirk@hohndel.org>2020-03-01 10:21:44 -0800
commit4cff23ef7a9a5cc7e747198eacc2694a16d8f561 (patch)
tree8698324b47545a7459e9f56338eeb4f4edd99c2d /mobile-widgets/qml
parenteed4e2746d5a81975f3cabf440e241a38a4aec7c (diff)
downloadsubsurface-4cff23ef7a9a5cc7e747198eacc2694a16d8f561.tar.gz
mobile: remove filter settings
These are not used anymore. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'mobile-widgets/qml')
-rw-r--r--mobile-widgets/qml/Settings.qml44
1 files changed, 0 insertions, 44 deletions
diff --git a/mobile-widgets/qml/Settings.qml b/mobile-widgets/qml/Settings.qml
index 1828b32dd..a4b55097e 100644
--- a/mobile-widgets/qml/Settings.qml
+++ b/mobile-widgets/qml/Settings.qml
@@ -546,50 +546,6 @@ TemplatePage {
visible: sectionAdvanced.isExpanded
}
GridLayout {
- id: filterPrefs
- visible: sectionAdvanced.isExpanded
- columns: 2
-
- TemplateLabel {
- text: qsTr("Filter preferences")
- font.pointSize: subsurfaceTheme.headingPointSize
- font.weight: Font.Light
- Layout.topMargin: Kirigami.Units.largeSpacing
- Layout.bottomMargin: Kirigami.Units.largeSpacing / 2
- Layout.columnSpan: 2
- }
- TemplateLabel {
- text: qsTr("Include notes in full text filtering")
- Layout.preferredWidth: gridWidth * 0.75
- }
-
- SsrfSwitch {
- id: fullTextNotes
- checked: PrefGeneral.filterFullTextNotes
- Layout.preferredWidth: gridWidth * 0.25
- onClicked: {
- PrefGeneral.filterFullTextNotes = checked
- }
- }
-
- TemplateLabel {
- text: qsTr("Match filter case sensitive")
- Layout.preferredWidth: gridWidth * 0.75
- }
-
- SsrfSwitch {
- id: filterCaseSensitive
- checked: PrefGeneral.filterCaseSensitive
- Layout.preferredWidth: gridWidth * 0.25
- onClicked: {
- PrefGeneral.filterCaseSensitive = checked
- }
- }
- }
- TemplateLine {
- visible: sectionAdvanced.isExpanded
- }
- GridLayout {
id: whichBluetoothDevices
visible: sectionAdvanced.isExpanded
columns: 2