diff -r 4a95c6b06ebe -r 5d5d84ab2c48 src/toolsets/filetoolset.cpp --- a/src/toolsets/filetoolset.cpp Sun Sep 06 01:22:25 2015 +0300 +++ b/src/toolsets/filetoolset.cpp Sun Sep 06 01:52:23 2015 +0300 @@ -113,7 +113,7 @@ void FileToolset::insertFrom() { QString fname = QFileDialog::getOpenFileName(); - int idx = m_window->getInsertionPoint(); + int idx = m_window->suggestInsertPoint(); if (not fname.length()) return; @@ -134,7 +134,7 @@ { currentDocument()->insertObj (idx, obj); obj->select(); - m_window->R()->compileObject (obj); + m_window->renderer()->compileObject (obj); idx++; }