Fix the autovacuum widgets in the table dialog When a user selects another language for the UI, some of the values of the autovacuum are set to 0 instead of their actual values because of the decimal separator (dot) which is not valid for this language (happens with french and polish for example).
This fix uses always the dot. To do that, I had to change the text widgets so that they are not confined to numeric values. Report from Bartek. Branch ------ REL-1_14_0_PATCHES Details ------- http://git.postgresql.org/gitweb?p=pgadmin3.git;a=commitdiff;h=23f8b07602d0a8cedbbdb7b9b1f8e4ebb13392bf Modified Files -------------- CHANGELOG | 3 + pgadmin/dlg/dlgTable.cpp | 303 +++++++++++++--------------------------- pgadmin/include/dlg/dlgTable.h | 27 ++-- 3 files changed, 118 insertions(+), 215 deletions(-) -- Sent via pgadmin-hackers mailing list ([email protected]) To make changes to your subscription: http://www.postgresql.org/mailpref/pgadmin-hackers
