Skip to content

Commit

Permalink
Locked item can't be moved with arrow keys
Browse files Browse the repository at this point in the history
  • Loading branch information
DelazJ authored and m-kuhn committed Feb 28, 2017
1 parent 8270e10 commit 79580be
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions src/app/qgstipfactory.cpp
Expand Up @@ -105,14 +105,17 @@ QgsTipFactory::QgsTipFactory() : QObject()
addGuiTip( myTip );
addGuiTip( myTip );
// This tip contributed by Andreas Neumann
myTip.setTitle( tr( "Lock an element in the layout view" ) );
myTip.setTitle( tr( "Lock an item in the layout view" ) );
myTip.setContent( tr( "Locking an element in the layout view prevents you to select or accidentally"
" move it with the mouse. (Un)Locking an item is done by ticking its checkbox"
" in the <strong>Items</strong> tab. While in a locked state, you can"
" still get it selected from the <strong>Items</strong> tab, move it with the arrow keys"
" or configure any of its properties in the <strong>Item Properties</strong> tab"
" including precisely place it by setting its <strong>Position and Size</strong>."
) );
" move it with the mouse. Locking an item is done by checking its"
" <img src=\":/images/themes/default/locked.svg\"/> state in the"
" <strong>%1</strong> tab. While in a locked state, you can still get it"
" selected from the <strong>%1</strong> tab, and configure any of its"
" properties in the <strong>%2</strong> tab, including precisely setting"
" its position and size." )
.arg( tr( "Items" ) )
.arg( tr( "Item Properties" ) )
);
addGuiTip( myTip );
// This tip contributed by Andreas Neumann
myTip.setTitle( tr( "Rotating a map and linking a north arrow" ) );
Expand Down

0 comments on commit 79580be

Please sign in to comment.