summaryrefslogtreecommitdiff
path: root/src/nautilus-search-popover.c
diff options
context:
space:
mode:
authorCarlos Soriano <csoriano@gnome.org>2018-02-13 17:54:04 +0100
committerCarlos Soriano <csoriano@gnome.org>2018-02-13 20:11:55 +0100
commitb6ebffd567d870f57db8266d01e25642c4c2862f (patch)
tree4e6c9ccaaa09aa48ab1faaf868be64ae374468a6 /src/nautilus-search-popover.c
parent27b039b37c1149fc8abbef6a683dd939e6f2bf1f (diff)
downloadnautilus-b6ebffd567d870f57db8266d01e25642c4c2862f.tar.gz
general: Run uncrustify
Diffstat (limited to 'src/nautilus-search-popover.c')
-rw-r--r--src/nautilus-search-popover.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nautilus-search-popover.c b/src/nautilus-search-popover.c
index 5c9dfa8d6..37f4ce6c8 100644
--- a/src/nautilus-search-popover.c
+++ b/src/nautilus-search-popover.c
@@ -367,14 +367,14 @@ search_fts_mode_changed (GtkToggleButton *button,
popover->fts_enabled == FALSE)
{
popover->fts_enabled = TRUE;
- g_settings_set_boolean(nautilus_preferences, NAUTILUS_PREFERENCES_FTS_ENABLED, TRUE);
+ g_settings_set_boolean (nautilus_preferences, NAUTILUS_PREFERENCES_FTS_ENABLED, TRUE);
g_object_notify (G_OBJECT (popover), "fts-enabled");
}
else if (gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (popover->filename_search_button)) &&
popover->fts_enabled == TRUE)
{
popover->fts_enabled = FALSE;
- g_settings_set_boolean(nautilus_preferences, NAUTILUS_PREFERENCES_FTS_ENABLED, FALSE);
+ g_settings_set_boolean (nautilus_preferences, NAUTILUS_PREFERENCES_FTS_ENABLED, FALSE);
g_object_notify (G_OBJECT (popover), "fts-enabled");
}
}