Force tab bar scrolling on mac. For me it doesnt make the scroll icons appear but at least teh tabbar doesnt autoexpand any more

git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@6129 c8812cc2-4d05-0410-92ff-de0c093fc19c
This commit is contained in:
timlinux 2006-11-27 03:13:34 +00:00
parent d56bccc3d8
commit 3f645a2bb8

View File

@ -22,6 +22,7 @@
#include <QColorDialog>
#include <QFontDialog>
#include <QTabWidget>
const int PIXMAP_WIDTH = 200;
@ -62,6 +63,8 @@ QgsLabelDialog::QgsLabelDialog ( QgsLabel *label, QWidget *parent )
this, SLOT(changeBufferColor()) );
connect( pbnDefaultFontColor, SIGNAL(clicked()),
this, SLOT(changeFontColor()) );
//added by Tim to force scrolling of tab bar on Mac
tabWidget2->setUsesScrollButtons(true);
}