[Freeciv-Dev] (PR#11569) plrdlg default sort column?
[Top] [All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index] [Thread Index]
<URL: http://bugs.freeciv.org/Ticket/Display.html?id=11569 >
> [jdorje - Fri Dec 17 09:12:28 2004]:
>
> The default sort column in the players dialog is "2". But this is the
> flag column!
>
> In 1.14 gui-gtk-2.0 the default sort column was also 2. But then it was
> the nation column. So I think (in 2.0 and HEAD) it needs to be bumped
> to 3 (the nation column again).
Here is a patch.
Index: client/plrdlg_common.c
===================================================================
RCS file: /home/freeciv/CVS/freeciv/client/plrdlg_common.c,v
retrieving revision 1.15
diff -u -r1.15 plrdlg_common.c
--- client/plrdlg_common.c 17 Dec 2004 09:13:54 -0000 1.15
+++ client/plrdlg_common.c 17 Dec 2004 20:19:31 -0000
@@ -249,7 +249,7 @@
*******************************************************************/
int player_dlg_default_sort_column(void)
{
- return 2;
+ return 3;
}
/****************************************************************************
|
|