I have a problem with Gtk2Hs, I want to set a cellRenderer
activatable.
For that, I need to set it's property cellMode
to CellRendererModeActivatable
by using :
set render [ cellMode:= CellRendererModeActivatable ]
But I have the following error when compiling
Not in scope: data constructor `CellRendererModeActivatable'
I'm using Gtk2Hs 0.12.3 on my Debian Wheezy with GHC 7.4.1.
I looked in Hackage if the constructor exist (in the correct version of the documentation) and ... it does.
I tried to explicity load the module
import Graphics.UI.Gtk.ModelView.CellRenderer
but the compilation error remain the same.
Do you have an idea where the error come from?