Skip to content

Commit 7215139

Browse files
author
timlinux
committed
Added tooltip to crs select toolbutton
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@9025 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent b3422a6 commit 7215139

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/plugins/coordinate_capture/coordinatecapture.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,10 +105,12 @@ void CoordinateCapture::initGui()
105105

106106
QToolButton * mypUserCrsToolButton = new QToolButton(mypWidget);
107107
mypUserCrsToolButton->setIcon(QIcon(":/coordinatecapture/geographic.png"));
108+
mypUserCrsToolButton->setToolTip(tr("Click to select the CRS to use for coordinate display"));
108109
connect(mypUserCrsToolButton , SIGNAL(clicked()), this, SLOT(setCRS()));
109110

110111
QLabel * mypCRSLabel = new QLabel(mypWidget);
111112
mypCRSLabel->setPixmap(QPixmap(":/coordinatecapture/transformed.png"));
113+
mypCRSLabel->setGeometry(mypUserCrsToolButton->geometry());
112114

113115
mpUserCrsEdit = new QLineEdit(mypWidget);
114116
mpUserCrsEdit->setReadOnly(true);

0 commit comments

Comments
 (0)