Your message dated Sun, 24 Jan 2021 13:03:25 +0000
with message-id <e1l3f37-0006qr...@fasolo.debian.org>
and subject line Bug#974666: fixed in gnome-sound-recorder 3.38.0-3
has caused the Debian Bug report #974666,
regarding gnome-sound-recorder: The export file dialog disappears suddendly 
after a few seconds.
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
974666: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=974666
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: gnome-sound-recorder
Version: 3.38.0-1
Severity: grave
Tags: patch
Justification: causes non-serious data loss
X-Debbugs-Cc: rasters...@gmail.com

Dear Maintainer,

After doing a recording, pressing the "export" button shows, as expected, a
file dialog to choose where to export the file. The problem is that the
dialog disappears sudendly after some seconds (a variable number: sometimes
as soon as three-four seconds, others between ten and twelve seconds). To
trigger this bug, just press the "export" button and wait.

This is critical because if the user want to navigate to a folder and uses too
much time, the dialog closes before being able to do the operation.

This seems a problem with the garbage collector. I attach a patch that fixes
it.



-- System Information:
Debian Release: bullseye/sid
  APT prefers unstable-debug
  APT policy: (500, 'unstable-debug'), (500, 'unstable')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 5.9.0-2-amd64 (SMP w/4 CPU threads)
Kernel taint flags: TAINT_OOT_MODULE, TAINT_UNSIGNED_MODULE
Locale: LANG=es_ES.UTF-8, LC_CTYPE=es_ES.UTF-8 (charmap=UTF-8), LANGUAGE not set
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages gnome-sound-recorder depends on:
ii  dconf-gsettings-backend [gsettings-backend]  0.38.0-1
ii  gir1.2-gdkpixbuf-2.0                         2.40.0+dfsg-5
ii  gir1.2-glib-2.0                              1.66.1-1
ii  gir1.2-gst-plugins-bad-1.0                   1.18.1-1
ii  gir1.2-gst-plugins-base-1.0                  1.18.1-1
ii  gir1.2-gstreamer-1.0                         1.18.1-1
ii  gir1.2-gtk-3.0                               3.24.23-2
ii  gir1.2-handy-1                               1.0.1-1
ii  gir1.2-pango-1.0                             1.46.2-3
ii  gjs                                          1.66.1-1
ii  gstreamer1.0-plugins-base                    1.18.1-1
ii  gstreamer1.0-plugins-good                    1.18.1-1
ii  gstreamer1.0-pulseaudio                      1.18.1-1

gnome-sound-recorder recommends no packages.

gnome-sound-recorder suggests no packages.

-- no debconf information
diff --git a/src/row.js b/src/row.js
index 154c0ef..743de63 100644
--- a/src/row.js
+++ b/src/row.js
@@ -68,16 +68,17 @@ var Row = GObject.registerClass({
         let exportAction = new Gio.SimpleAction({ name: 'export' });
         exportAction.connect('activate', () => {
             const window = Gio.Application.get_default().get_active_window();
-            const dialog = Gtk.FileChooserNative.new(_('Export Recording'), 
window, Gtk.FileChooserAction.SAVE, _('_Export'), _('_Cancel'));
-            
dialog.set_current_name(`${this._recording.name}.${this._recording.extension}`);
-            dialog.connect('response', (_dialog, response) => {
+            this.exportDialog = Gtk.FileChooserNative.new(_('Export 
Recording'), window, Gtk.FileChooserAction.SAVE, _('_Export'), _('_Cancel'));
+            
this.exportDialog.set_current_name(`${this._recording.name}.${this._recording.extension}`);
+            this.exportDialog.connect('response', (_dialog, response) => {
                 if (response === Gtk.ResponseType.ACCEPT) {
-                    const dest = dialog.get_file();
+                    const dest = this.exportDialog.get_file();
                     this._recording.save(dest);
                 }
-                dialog.destroy();
+                this.exportDialog.destroy();
+                this.exportDialog = null;
             });
-            dialog.show();
+            this.exportDialog.show();
         });
         this.actionGroup.add_action(exportAction);
 

--- End Message ---
--- Begin Message ---
Source: gnome-sound-recorder
Source-Version: 3.38.0-3
Done: Simon McVittie <s...@debian.org>

We believe that the bug you reported is fixed in the latest version of
gnome-sound-recorder, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 974...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Simon McVittie <s...@debian.org> (supplier of updated gnome-sound-recorder 
package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256

Format: 1.8
Date: Sun, 24 Jan 2021 12:15:42 +0000
Source: gnome-sound-recorder
Architecture: source
Version: 3.38.0-3
Distribution: unstable
Urgency: medium
Maintainer: Debian GNOME Maintainers 
<pkg-gnome-maintain...@lists.alioth.debian.org>
Changed-By: Simon McVittie <s...@debian.org>
Closes: 974666 980804
Changes:
 gnome-sound-recorder (3.38.0-3) unstable; urgency=medium
 .
   * Team upload
   * Depend on gstreamer1.0-plugins-good (>= 1.18.0) instead of -pulseaudio.
     The PulseAudio plugin is now included in -good instead of being
     separate, and gstreamer1.0-pulseaudio is transitional.
     (Closes: #980804)
   * Add patch to fix "export" dialog disappearing due to GC
     (Closes: #974666)
Checksums-Sha1:
 896c859724ce56b920ae472df297ee2250818c3d 2678 gnome-sound-recorder_3.38.0-3.dsc
 02d5236ff433060f0f243b12c047d2eb6bcd8a1f 5456 
gnome-sound-recorder_3.38.0-3.debian.tar.xz
 99e34745d146543483e2c05abf797aa26597547a 22248 
gnome-sound-recorder_3.38.0-3_source.buildinfo
Checksums-Sha256:
 6978ed8a0be1eb56001c3729de801a009b0b38e4aee7fd56aa850e4ba773dd38 2678 
gnome-sound-recorder_3.38.0-3.dsc
 08364bc43a932b6919e408e8afe5a296d007164c993f9e166c9ed62a2dee7585 5456 
gnome-sound-recorder_3.38.0-3.debian.tar.xz
 b1e1129356813160160e91a220ba69680c04af5f3ed632e161f5d6c39fcbd379 22248 
gnome-sound-recorder_3.38.0-3_source.buildinfo
Files:
 650a668a016cb4dc2e6298f0b9ddfaa4 2678 gnome optional 
gnome-sound-recorder_3.38.0-3.dsc
 4184b4eec4d787ac3f03ea50b9cba56e 5456 gnome optional 
gnome-sound-recorder_3.38.0-3.debian.tar.xz
 cb33f14093ab3e369d6482d05880663a 22248 gnome optional 
gnome-sound-recorder_3.38.0-3_source.buildinfo

-----BEGIN PGP SIGNATURE-----

iQIzBAEBCAAdFiEENuxaZEik9e95vv6Y4FrhR4+BTE8FAmANa2wACgkQ4FrhR4+B
TE8h8g//c0C72WGrZrhY8mEpsGV6XOx+PtqRMIsGJGZxyp0pWD4EmJOkj9F6vCpY
4YxbX8N8rQAB9mS4v4kB0xZp/oz3PjV5BnpKGhJVq34OmingoeLGLNsvi6etecvX
ijggb9aW5rlA/ugv2CK5AvyBIq/TRghgGxkSHXv757ZlH8ZnpS4JkOhop7Mhxe+e
bbbAc7sCNoSqKklxGf+Yd2BpBR9Sc4+5L7/BgZGr0YCVFGNdHhELHZvHHgxXIK7d
sD7huZzhzUj4+uznYwkBRwZBo/AR3lk1gol+rjrWzROcXe2uPYAoxkYMYBhx8mXD
68dBSaCPoqY7jzb4U74ia1K6BQ3FX5MKL+C3R1PfzANwBe4OoU0TJPEYunW3CxaY
3PzQlgyyZEEqyopguzKJmRoS8bfleDMQB/LB1eog9KNx0wCGoIHBFJv2/4CVfm3v
qi7rS1ExLMiGwmgaSqIJRIFHXpHA1Sa0lStk8UPq+G0fxq5xqe0Kuk2zC0lk1qAv
J/jScEKn4SGdgnmBYWZCkNbd4JbWDvCThFThR35nmeQOSpqoadhx4wRC1t6f7Qq4
MHMikLK8nr+NxAWwJ0wQZk87YfPrnC2x0lCxWSvAgkLLJFltuAfeslSGWKrRngvm
Zru/lBd3q+QogrCxY+dd7mUmjbi8/WmF2R8xzs5au1T9EHo0JaA=
=69IE
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to