[Freeciv-Dev] Re: (PR#11207) keyboardless mouse-only goto causes acciden
[Top] [All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index] [Thread Index]
Subject: |
[Freeciv-Dev] Re: (PR#11207) keyboardless mouse-only goto causes accidental gotos |
From: |
"Christian Knoke" <chrisk@xxxxxxxxx> |
Date: |
Tue, 21 Dec 2004 10:15:18 -0800 |
Reply-to: |
bugs@xxxxxxxxxxx |
<URL: http://bugs.freeciv.org/Ticket/Display.html?id=11207 >
On Mon, Dec 20, 2004 at 01:58:15PM -0800, Jason Short wrote:
> > On Sun, Dec 19, 2004 at 10:12:35AM -0800, Jason Short wrote:
> > >
> > > Another alternative is to remove the veteran-level text entirely. This
> > > info is already shown in the unit graphic on the panel and on the
> > > mapview.
> >
> > Yes, absolutely. The hitpoints aren't written in text either, and they
> > are of comparable importance.
> >
> > Just remove it. Simply is best.
>
> Patch?
Affects GTK2 and XAW. GTK1 does not have then problem. I don't know about
other clients.
Christian
--
Christian Knoke * * * http://cknoke.de
* * * * * * * * * Ceterum censeo Microsoft esse dividendum.
--- client/text.c.orig 2004-12-19 10:43:54.000000000 +0100
+++ client/text.c 2004-12-21 19:16:56.000000000 +0100
@@ -476,10 +476,6 @@
struct unit_type *ptype = unit_type(punit);
add("%s", ptype->name);
-
- if (ptype->veteran[punit->veteran].name[0] != '\0') {
- add(" (%s)", _(ptype->veteran[punit->veteran].name));
- }
}
RETURN;
}
|
|