Remember the position and size of the color and gradient dialogs even if they're...
[synfig.git] / synfig-studio / trunk / src / gtkmm / dialogsettings.cpp
index e325dd9..9ca73a4 100644 (file)
@@ -69,14 +69,14 @@ DialogSettings::get_value(const synfig::String& key, synfig::String& value)const
 {
        if(key=="pos")
        {
-               if(!window->is_visible())return false;
+               // if(!window->is_visible())return false;
                int x,y; window->get_position(x,y);
                value=strprintf("%d %d",x,y);
                return true;
        }
        if(key=="size")
        {
-               if(!window->is_visible())return false;
+               // if(!window->is_visible())return false;
                int x,y; window->get_size(x,y);
                value=strprintf("%d %d",x,y);
                return true;