Skip to content

Commit ae66f3b

Browse files
author
timlinux
committedFeb 27, 2011
Added a couple more tips
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@15266 c8812cc2-4d05-0410-92ff-de0c093fc19c

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed
 

‎src/app/qgstipfactory.cpp

+20
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,26 @@ QgsTipFactory::QgsTipFactory() : QObject()
142142
" is more than one."
143143
) );
144144
addGuiTip( myTip );
145+
// by Tim
146+
myTip.setTitle(tr("Using the mouse scroll wheel"));
147+
myTip.setContent(tr("You can use the scroll wheel on your mouse to zoom in, "
148+
" out and pan the map. Scroll forwards to zoom in, scroll backwards to "
149+
" zoom out and press and hold the scroll wheel down to pan the map. You "
150+
" can configure options for scroll wheel behaviour in the Options panel."
151+
));
152+
addGuiTip(myTip);
153+
// by Tim
154+
myTip.setTitle(tr("Stopping rendering"));
155+
myTip.setContent(tr("Sometimes you have a very large dataset which takes ages "
156+
" to draw. You can press 'esc' (the escape key), or click the small red "
157+
" 'X' icon in the status bar to the bottom right of the window at any "
158+
" time to halt rendering. If you are going to be performing several "
159+
" actions (e.g. modifying symbology options) and wish to temporarily "
160+
" disable map rendering while you do so, you can uncheck the 'Render' "
161+
" checkbox in the bottom right of the status bar. Don't forget to check "
162+
" it on again when you are ready to have the map draw itself again!"
163+
));
164+
addGuiTip(myTip);
145165
/* Template for adding more tips
146166
myTip.setTitle(tr(""));
147167
myTip.setContent(tr(""

0 commit comments

Comments
 (0)
Please sign in to comment.