Skip to content

Commit 674cb95

Browse files
author
macho
committed
moved decorations problem (seems related to metacity) to the right place and did (hopefully) the right thing with it
git-svn-id: http://svn.osgeo.org/qgis/trunk@10439 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent fa4aa1f commit 674cb95

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/plugins/georeferencer/plugin.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ void QgsGeorefPlugin::run()
148148
// QgsGeorefPluginGui *myPluginGui = new QgsGeorefPluginGui( mQGisIface, QgsGeorefPluginGui::findMainWindow(), Qt::Window | Qt::WindowMinimizeButtonHint);
149149
// myPluginGui->show();
150150
// myPluginGui->setFocus();
151-
QgsPointDialog *myPlugin = new QgsPointDialog( mQGisIface, QgsPointDialog::findMainWindow(), Qt::Window | Qt::WindowMinimizeButtonHint );
151+
QgsPointDialog *myPlugin = new QgsPointDialog( mQGisIface, QgsPointDialog::findMainWindow(), Qt::Window | Qt::WindowMinimizeButtonHint | Qt::WindowTitleHint );
152152
myPlugin->move( 0, 0 );
153153
myPlugin->show();
154154
myPlugin->setFocus();

src/plugins/georeferencer/qgspointdialog.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ QgsPointDialog::QgsPointDialog( QString layerPath, QgisInterface* theQgisInterfa
8282
openImageFile( layerPath );
8383
}
8484

85-
QgsPointDialog::QgsPointDialog( QgisInterface* theQgisInterface, QWidget* parent, Qt::WFlags fl ): QDialog( parent ), mLayer( 0 ), mIface( theQgisInterface ), mAcetateCounter( 0 )
85+
QgsPointDialog::QgsPointDialog( QgisInterface* theQgisInterface, QWidget* parent, Qt::WFlags fl ): QDialog( parent, fl ), mLayer( 0 ), mIface( theQgisInterface ), mAcetateCounter( 0 )
8686
{
8787
initialize();
8888
}

0 commit comments

Comments
 (0)