File tree Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 50
50
def moduleInformation ():
51
51
try :
52
52
import qgis .gui
53
- return "qgis.gui" , dir (qgis .gui )
53
+ widget_list = dir (qgis .gui )
54
+ widget_list .remove ('QgsScrollArea' )
Collapse comment Comment on line R54
Code has comments. Press enter to view.
55
+ return "qgis.gui" , widget_list
54
56
except ImportError :
55
57
return "" , []
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ SET (QGIS_CUSTOMWIDGETS_SRCS
36
36
qgsrelationreferencewidgetplugin.cpp
37
37
qgsscalerangewidgetplugin.cpp
38
38
qgsscalewidgetplugin.cpp
39
- qgsscrollareawidgetplugin.cpp
39
+ # qgsscrollareawidgetplugin.cpp
40
40
qgsspinboxplugin.cpp
41
41
)
42
42
@@ -66,7 +66,7 @@ SET (QGIS_CUSTOMWIDGETS_MOC_HDRS
66
66
qgsrelationreferencewidgetplugin.h
67
67
qgsscalerangewidgetplugin.h
68
68
qgsscalewidgetplugin.h
69
- qgsscrollareawidgetplugin.h
69
+ # qgsscrollareawidgetplugin.h
70
70
qgsspinboxplugin.h
71
71
)
72
72
Original file line number Diff line number Diff line change 39
39
#include " qgsrelationreferencewidgetplugin.h"
40
40
#include " qgsscalerangewidgetplugin.h"
41
41
#include " qgsscalewidgetplugin.h"
42
- #include " qgsscrollareawidgetplugin.h"
42
+ // #include "qgsscrollareawidgetplugin.h"
43
43
#include " qgsspinboxplugin.h"
44
44
45
45
@@ -69,7 +69,7 @@ QgisCustomWidgets::QgisCustomWidgets( QObject *parent )
69
69
mWidgets .append ( new QgsRelationReferenceWidgetPlugin ( this ) );
70
70
mWidgets .append ( new QgsScaleRangeWidgetPlugin ( this ) );
71
71
mWidgets .append ( new QgsScaleWidgetPlugin ( this ) );
72
- mWidgets .append ( new QgsScrollAreaWidgetPlugin ( this ) );
72
+ // mWidgets.append( new QgsScrollAreaWidgetPlugin( this ) ); // this is causing troubles at the moment
73
73
mWidgets .append ( new QgsSpinBoxPlugin ( this ) );
74
74
}
75
75
You can’t perform that action at this time.
4 commit comments
Gustry commentedon Jul 24, 2017
Whaou, thanks a lot, I will be able to use Processing again!
nyalldawson commentedon Jul 24, 2017
Nice catch @3nids!
Gustry commentedon Jul 24, 2017
@3nids I shouldn't have this kind of UI anymore?

Or did I miss something? Thanks
3nids commentedon Jul 24, 2017