[Bug 564079] Re: Rename tab in guake in Lucid doesn't keep the name

2017-10-27 Thread Bug Watch Updater
Launchpad has imported 2 comments from the remote bug at
https://bugzilla.redhat.com/show_bug.cgi?id=598354.

If you reply to an imported comment from within Launchpad, your comment
will be sent to the remote bug automatically. Read more about
Launchpad's inter-bugtracker facilities at
https://help.launchpad.net/InterBugTracking.


On 2010-06-01T07:33:56+00:00 Jan wrote:

Created attachment 418510
Guake tab bar after renaming first tab

Description of problem:

Renaming current tab results in empty tab name.


Version-Release number of selected component (if applicable):

$ yum info guake
[...]
Name: guake
Architektur : x86_64
Version : 0.4.1
Ausgabe : 4.fc13
Grösse  : 684 k
Repo: installed
Aus repo: updates
[...]

How reproducible:

Open guake terminal and try to rename tab with the defined keyboard shortcut
 
Actual results:

Empty tab name (see screenshot)

Reply at:
https://bugs.launchpad.net/ubuntu/+source/guake/+bug/564079/comments/5


On 2010-06-01T14:59:22+00:00 Pierre-YvesChibon wrote:

This has been fixed on the git upstream.
If no release is planned soon I will try to do a small release based on the git.

Reply at:
https://bugs.launchpad.net/ubuntu/+source/guake/+bug/564079/comments/6


** Changed in: guake (Fedora)
   Status: Unknown => Won't Fix

** Changed in: guake (Fedora)
   Importance: Unknown => Medium

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/564079

Title:
  Rename tab in guake in Lucid doesn't keep the name

To manage notifications about this bug go to:
https://bugs.launchpad.net/guake/+bug/564079/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 564079] Re: Rename tab in guake in Lucid doesn't keep the name

2011-10-17 Thread Andrej Pintar
Thanks for the fix. No need to compile new version.

just do what @helix84 said:

   entry.reparent(vbox)

response = dialog.run()
   
if response == gtk.RESPONSE_ACCEPT:
self.selected_tab.set_label(entry.get_text())

dialog.destroy()
 this goes lower / under

self.set_terminal_focus()

def on_close_activate(self, *args):

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/564079

Title:
  Rename tab in guake in Lucid doesn't keep the name

To manage notifications about this bug go to:
https://bugs.launchpad.net/guake/+bug/564079/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 564079] Re: Rename tab in guake in Lucid doesn't keep the name

2011-08-11 Thread Bug Watch Updater
** Changed in: guake (Debian)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/564079

Title:
  Rename tab in guake in Lucid doesn't keep the name

To manage notifications about this bug go to:
https://bugs.launchpad.net/guake/+bug/564079/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 564079] Re: Rename tab in guake in Lucid doesn't keep the name

2010-10-11 Thread Finog
The reason I'm interested in this bug is because it's not uncommon for me to 
have multiple instances of mysql client going at once - some of which are 
linked to production servers. Since all the interfaces therefore look similar, 
the ability to label tabs is paramount in preventing accidental manipulations 
of production data. Inability to label tabs puts data at risk, and breaks 
workflow. The SRU criteria listed below would seem to apply:
#Bugs which may, under realistic circumstances, directly cause a loss of user 
data
#Bugs which do not fit under above categories, but (1) have an obviously safe 
patch and (2) affect an application rather than critical infrastructure 
packages (like X.org or the kernel).

Thank you for the fix, which I will take note of, but this seems like an
important and simple change to make.

-- 
Rename tab in guake in Lucid doesn't keep the name
https://bugs.launchpad.net/bugs/564079
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 564079] Re: Rename tab in guake in Lucid doesn't keep the name

2010-10-08 Thread helix84
As it was already mentioned, this is already fixed in Maverick. I don't
think it will ever be fixed in Lucid, since it doesn't meet the SRU
criteria: https://wiki.ubuntu.com/StableReleaseUpdates#When

-- 
Rename tab in guake in Lucid doesn't keep the name
https://bugs.launchpad.net/bugs/564079
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 564079] Re: Rename tab in guake in Lucid doesn't keep the name

2010-10-08 Thread helix84
BTW, the fix is a one-line change, so you if you want, you can fix it
yourself:

--- /usr/lib/guake/guake.py.bak 2010-10-08 16:38:58.0 +0200
+++ /usr/lib/guake/guake.py 2010-10-08 17:27:15.0 +0200
@@ -980,11 +980,11 @@
 entry.reparent(vbox)
 
 response = dialog.run()
-dialog.destroy()
-
 if response == gtk.RESPONSE_ACCEPT:
 self.selected_tab.set_label(entry.get_text())
 
+dialog.destroy()
+
 self.set_terminal_focus()
 
 def on_close_activate(self, *args):

-- 
Rename tab in guake in Lucid doesn't keep the name
https://bugs.launchpad.net/bugs/564079
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 564079] Re: Rename tab in guake in Lucid doesn't keep the name

2010-10-04 Thread Finog
The fix may be released, but my Lucid LTS hasn't yet seen support from
it. :-( Any thoughts on when that might occur?

-- 
Rename tab in guake in Lucid doesn't keep the name
https://bugs.launchpad.net/bugs/564079
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 564079] Re: Rename tab in guake in Lucid doesn't keep the name

2010-09-22 Thread Sylvestre Ledru
This is fixed in Maverick (0.4.2)

-- 
Rename tab in guake in Lucid doesn't keep the name
https://bugs.launchpad.net/bugs/564079
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 564079] Re: Rename tab in guake in Lucid doesn't keep the name

2010-09-22 Thread Sense Hofstede
Marking Fix Released based on the latest comment to this bug report, by
the Guake packager. Thanks to everyone for contributing to this bug
report!

** Changed in: guake (Ubuntu)
   Status: Triaged = Fix Released

-- 
Rename tab in guake in Lucid doesn't keep the name
https://bugs.launchpad.net/bugs/564079
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 564079] Re: Rename tab in guake in Lucid doesn't keep the name

2010-09-20 Thread Sense Hofstede
** Bug watch added: Red Hat Bugzilla #598354
   https://bugzilla.redhat.com/show_bug.cgi?id=598354

** Also affects: guake (Fedora) via
   https://bugzilla.redhat.com/show_bug.cgi?id=598354
   Importance: Unknown
   Status: Unknown

-- 
Rename tab in guake in Lucid doesn't keep the name
https://bugs.launchpad.net/bugs/564079
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 564079] Re: Rename tab in guake in Lucid doesn't keep the name

2010-08-23 Thread Tim Dittler
+1 from me.
It worked in Ubuntu Jaunty. On Lucid (2.6.32-23-generic #37-Ubuntu SMP Fri Jun 
11 07:54:58 UTC 2010 i686 GNU/Linux) it behaves as reported

-- 
Rename tab in guake in Lucid doesn't keep the name
https://bugs.launchpad.net/bugs/564079
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 564079] Re: Rename tab in guake in Lucid doesn't keep the name

2010-05-07 Thread muszek
Affects me as well.  I'm pretty sure I was using 4.1 in Karmic as well
(AFAIR installed a getdeb.net package) and it didn't have this problem.

-- 
Rename tab in guake in Lucid doesn't keep the name
https://bugs.launchpad.net/bugs/564079
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 564079] Re: Rename tab in guake in Lucid doesn't keep the name

2010-05-03 Thread Pioruns
When fix will be in repository? I'm using Lucid AMD64 without proposal
repo.

-- 
Rename tab in guake in Lucid doesn't keep the name
https://bugs.launchpad.net/bugs/564079
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 564079] Re: Rename tab in guake in Lucid doesn't keep the name

2010-04-15 Thread Steve Garton

** Attachment added: Screenshot.png
   http://launchpadlibrarian.net/44321387/Screenshot.png

-- 
Rename tab in guake in Lucid doesn't keep the name
https://bugs.launchpad.net/bugs/564079
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 564079] Re: Rename tab in guake in Lucid doesn't keep the name

2010-04-15 Thread Sense Hofstede
Thank you for helping with making Ubuntu and Guake better by reporting
this bug. I've found a bug report describing this issue upstream and
apparently the fix for this bug is already available in the Git master
of the code.

** Bug watch added: guake.org/ #205
   http://guake.org/ticket/205

** Also affects: guake via
   http://guake.org/ticket/205
   Importance: Unknown
   Status: Unknown

** Changed in: guake (Ubuntu)
   Importance: Undecided = Low

** Changed in: guake (Ubuntu)
   Status: New = Triaged

-- 
Rename tab in guake in Lucid doesn't keep the name
https://bugs.launchpad.net/bugs/564079
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 564079] Re: Rename tab in guake in Lucid doesn't keep the name

2010-04-15 Thread Sense Hofstede
** Bug watch added: Debian Bug tracker #577984
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=577984

** Also affects: guake (Debian) via
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=577984
   Importance: Unknown
   Status: Unknown

-- 
Rename tab in guake in Lucid doesn't keep the name
https://bugs.launchpad.net/bugs/564079
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 564079] Re: Rename tab in guake in Lucid doesn't keep the name

2010-04-15 Thread Bug Watch Updater
** Changed in: guake
   Status: Unknown = Fix Released

-- 
Rename tab in guake in Lucid doesn't keep the name
https://bugs.launchpad.net/bugs/564079
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 564079] Re: Rename tab in guake in Lucid doesn't keep the name

2010-04-15 Thread Bug Watch Updater
** Changed in: guake (Debian)
   Status: Unknown = New

-- 
Rename tab in guake in Lucid doesn't keep the name
https://bugs.launchpad.net/bugs/564079
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs