# HG changeset patch # User Sebastian Kruse # Date 1363346327 -3600 # Node ID 0327cffe65ec243f0e79352f8df8316411e0c538 # Parent 593cfbd58c3e28969c365d5cfa978d0337f8b389 bugfix for load-dropdown (in case of local KML the wrong widget was loaded) diff -r 593cfbd58c3e -r 0327cffe65ec src/econnect/wp3_3/client/core/ApplicationGrid.java --- a/src/econnect/wp3_3/client/core/ApplicationGrid.java Thu Mar 07 14:56:13 2013 +0100 +++ b/src/econnect/wp3_3/client/core/ApplicationGrid.java Fri Mar 15 12:18:47 2013 +0100 @@ -268,7 +268,7 @@ //skruse: test for local CSV loading //TODO: if this remains in the code, the check below has //to be improved (some constant somewhere) - if( label.equals("local CSV") ){ + else if( label.equals("local CSV") ){ openPanel.setWidget(0, 1, uploadCSV); } else if( staticListBoxes.get(ds) == null ){