Skip to content

Commit cbce1df

Browse files
author
gsherman
committed
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/qgis@12154 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent 190eecd commit cbce1df

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/app/qgsabout.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ void QgsAbout::init()
7474
//ignore the line if it starts with a hash....
7575
if ( line.left( 1 ) == "#" ) continue;
7676
QStringList myTokens = line.split( "\t", QString::SkipEmptyParts );
77-
lines += myTokens[0];
77+
lines << myTokens[0];
7878
}
7979
file.close();
8080
lstDevelopers->clear();

src/ui/qgsabout.ui

+1-1
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ p, li { white-space: pre-wrap; }
191191
<bool>true</bool>
192192
</property>
193193
<property name="isWrapping" stdset="0" >
194-
<bool>true</bool>
194+
<bool>false</bool>
195195
</property>
196196
</widget>
197197
</item>

0 commit comments

Comments
 (0)