diff --git a/CHANGELOG b/CHANGELOG index 606de5a5..9963184a 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,8 @@ +6.4.12-rc: +- Don't reenable tempqueues when restarting +- Update tooltips on various buttons +- Replace pause-after GtkSpinButton with a GtkComboBoxText + 6.4.12: - Control automatic pausing with a GtkComboBox - Move current position slider into the top section diff --git a/core/tempq.c b/core/tempq.c index c1a4e031..504f6b6c 100644 --- a/core/tempq.c +++ b/core/tempq.c @@ -15,7 +15,7 @@ static struct queue *__tempq_alloc(struct queue_ops *ops, unsigned int flags) struct queue *queue = g_malloc(sizeof(struct queue)); tempq_list = g_slist_append(tempq_list, queue); - queue_init(queue, flags | Q_ENABLED | Q_SAVE_FLAGS | Q_SAVE_SORT, ops); + queue_init(queue, flags | Q_SAVE_FLAGS | Q_SAVE_SORT, ops); return queue; } @@ -93,7 +93,7 @@ void tempq_save(struct queue *queue, enum queue_flags flag) struct queue *tempq_alloc(struct queue_ops *ops, unsigned int flags) { - struct queue *queue = __tempq_alloc(ops, flags); + struct queue *queue = __tempq_alloc(ops, Q_ENABLED | flags); tempq_save(queue, Q_ENABLED); return queue; }