diff options
author | Alexander von Gluck IV <[email protected]> | 2013-09-24 19:59:06 -0500 |
---|---|---|
committer | infirit <[email protected]> | 2013-12-17 17:52:35 +0100 |
commit | d0f27e912a5206d1f309d4dffdf2d0ca68ee52f2 (patch) | |
tree | 539b34c380a50fb4ade5eb446ed70da688635acc | |
parent | 8d897b8ecac49212c761752ea50d1f890f962441 (diff) | |
download | pluma-d0f27e912a5206d1f309d4dffdf2d0ca68ee52f2.tar.bz2 pluma-d0f27e912a5206d1f309d4dffdf2d0ca68ee52f2.tar.xz |
filemanager: Add missing data assignment
* Amanas mentioned in IRC that it was likely
missed after the gsettings migration.
-rw-r--r-- | plugins/filebrowser/pluma-file-browser-plugin.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/filebrowser/pluma-file-browser-plugin.c b/plugins/filebrowser/pluma-file-browser-plugin.c index bce64c69..69b1e185 100644 --- a/plugins/filebrowser/pluma-file-browser-plugin.c +++ b/plugins/filebrowser/pluma-file-browser-plugin.c @@ -306,6 +306,7 @@ on_confirm_trash_changed (GSettings *settings, PlumaFileBrowserPluginData *data; gboolean enable = FALSE; + data = (PlumaFileBrowserPluginData *)(user_data); enable = g_settings_get_boolean (settings, key); data->confirm_trash = enable; |