Limit size of undo/redo history (issue #819)
1 unresolved thread
1 unresolved thread
Merge request reports
Activity
assigned to @alexxcons
- Resolved by Alexander Schwinn
@hi-im-buggy : review/ testing would be welcome !
I as well have a draft for the toolbar items (!298 (merged)) ... though for making them insensitive on need, some bigger restructurazion will be required first
Edited by Alexander Schwinn
- Resolved by Alexander Schwinn
enabled an automatic merge when the pipeline for d0970f74 succeeds
mentioned in commit 87e3c780
mentioned in issue #819 (closed)
81 83 static void 82 84 thunar_job_operation_class_init (ThunarJobOperationClass *klass) 83 85 { 84 GObjectClass *gobject_class; 86 GObjectClass *gobject_class; 87 ThunarPreferences *preferences; 85 88 86 89 gobject_class = G_OBJECT_CLASS (klass); 87 90 gobject_class->dispose = thunar_job_operation_dispose; 88 91 gobject_class->finalize = thunar_job_operation_finalize; 92 93 preferences = thunar_preferences_get (); Only just realised: shouldn't we also have some callback connected to the signal that this property was changed, reflecting the change in
job_operation_list_max_size
? Otherwise if the user changes the max history size, they have to restart Thunar for the changed to be reflected.Edited by Pratyaksh Gautam
Please register or sign in to reply