Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix wrapping of developer names in the about box so each name is on a…
… new row of the listview, rather than all names in a single row.

git-svn-id: http://svn.osgeo.org/qgis/trunk@12154 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
gsherman committed Nov 16, 2009
1 parent 66b1362 commit af5d94b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app/qgsabout.cpp
Expand Up @@ -74,7 +74,7 @@ void QgsAbout::init()
//ignore the line if it starts with a hash....
if ( line.left( 1 ) == "#" ) continue;
QStringList myTokens = line.split( "\t", QString::SkipEmptyParts );
lines += myTokens[0];
lines << myTokens[0];
}
file.close();
lstDevelopers->clear();
Expand Down
2 changes: 1 addition & 1 deletion src/ui/qgsabout.ui
Expand Up @@ -191,7 +191,7 @@ p, li { white-space: pre-wrap; }
<bool>true</bool>
</property>
<property name="isWrapping" stdset="0" >
<bool>true</bool>
<bool>false</bool>
</property>
</widget>
</item>
Expand Down

0 comments on commit af5d94b

Please sign in to comment.