[moserial] disable last sent string saving, I found this annoying
- From: Michael J. Chudobiak <mjc src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [moserial] disable last sent string saving, I found this annoying
- Date: Sat, 16 Jan 2021 14:12:16 +0000 (UTC)
commit e239b26bb924e5a62e93a9794b1cad0e726c8491
Author: Michael J. Chudobiak <mjc avtechpulse com>
Date: Sat Jan 16 09:11:51 2021 -0500
disable last sent string saving, I found this annoying
src/MainWindow.vala | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/src/MainWindow.vala b/src/MainWindow.vala
index 46e6b67..52f9292 100644
--- a/src/MainWindow.vala
+++ b/src/MainWindow.vala
@@ -284,7 +284,7 @@ public class moserial.MainWindow : Gtk.Window // Have to extend Gtk.Winow to get
sendButton.clicked.connect (sendString);
sendButton.set_tooltip_text (_("Send the outgoing data now."));
entry = (Gtk.Entry)builder.get_object ("entry");
- entry.set_text (profile.getInputString ());
+// entry.set_text (profile.getInputString ());
entry.activate.connect (sendString);
entry.set_tooltip_text (_("Type outgoing data here. Press Enter or Send to send it."));
@@ -477,7 +477,7 @@ public class moserial.MainWindow : Gtk.Window // Have to extend Gtk.Winow to get
public void sendString (Widget w) {
string s;
s = entry.get_text ();
- profile.setInputString (s);
+// profile.setInputString (s);
if (!ensureConnected ()) {
return;
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]