Your message dated Sat, 25 Nov 2017 07:13:48 +0100
with message-id <[email protected]>
and subject line
has caused the Debian Bug report #528396,
regarding gtkterm: The window asking the name to save the configuration don't
press ok whith Enter.
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 [email protected]
immediately.)
--
528396: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=528396
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: gtkterm
Version: 0.99.5-1+b1
Severity: minor
Tags: patch
The window generated with Configuration -> Save configuration don't activates
Ok when Enter is pressed. This patch fix it.
-- System Information:
Debian Release: squeeze/sid
APT prefers unstable
APT policy: (500, 'unstable'), (500, 'stable')
Architecture: amd64 (x86_64)
Kernel: Linux 2.6.29-1-amd64 (SMP w/2 CPU cores)
Locale: LANG=pt_BR.UTF-8, LC_CTYPE=pt_BR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
Versions of packages gtkterm depends on:
ii libatk1.0-0 1.26.0-1 The ATK accessibility toolkit
ii libc6 2.9-12 GNU C Library: Shared libraries
ii libcairo2 1.8.6-2+b1 The Cairo 2D vector graphics libra
ii libfontconfig1 2.6.0-3 generic font configuration library
ii libglib2.0-0 2.20.1-2 The GLib library of C routines
ii libgtk2.0-0 2.16.1-2 The GTK+ graphical user interface
ii libpango1.0-0 1.24.0-3+b1 Layout and rendering of internatio
ii libvte9 1:0.20.1-1 Terminal emulator widget for GTK+
ii libx11-6 2:1.2.1-1 X11 client-side library
ii libxcursor1 1:1.1.9-1 X cursor management library
ii libxext6 2:1.0.4-1 X11 miscellaneous extension librar
ii libxfixes3 1:4.0.3-2 X11 miscellaneous 'fixes' extensio
ii libxft2 2.1.13-3 FreeType-based font drawing librar
ii libxi6 2:1.2.1-2 X11 Input extension library
ii libxinerama1 2:1.0.3-2 X11 Xinerama extension library
ii libxrandr2 2:1.3.0-2 X11 RandR extension library
ii libxrender1 1:0.9.4-2 X Rendering Extension client libra
gtkterm recommends no packages.
gtkterm suggests no packages.
-- no debconf information
diff -Nudar gtkterm-0.99.5.orig/src/config.c gtkterm-0.99.5/src/config.c
--- gtkterm-0.99.5.orig/src/config.c 2009-05-12 14:04:06.000000000 -0300
+++ gtkterm-0.99.5/src/config.c 2009-05-12 14:03:50.000000000 -0300
@@ -580,11 +580,13 @@
GTK_STOCK_OK,
GTK_RESPONSE_ACCEPT,
NULL);
+ gtk_dialog_set_default_response(GTK_DIALOG(dialog), GTK_RESPONSE_ACCEPT);
label=gtk_label_new(_("Configuration name : "));
box = gtk_hbox_new(FALSE, 0);
entry = gtk_entry_new();
+ gtk_entry_set_activates_default(GTK_ENTRY(entry), TRUE);
gtk_box_pack_start(GTK_BOX(box), label, FALSE, TRUE, 0);
gtk_box_pack_start(GTK_BOX(box), entry, FALSE, TRUE, 0);
--- End Message ---
--- Begin Message ---
version 0.99.7+git9d63182-1
--- End Message ---