Version: (using Devel) Installed from: Compiled sources Compiler: G++ OS: Linux It'd be cool to have a "Save to file"-option for the Notes-Plasmoid, which saves the whole content of it into a file.
Created attachment 26990 [details] Patch for restoring scroll value I added that functionality. It currently does not work when the note is in the panel. And it has a problem scrolling at the bottom line. But I suspect that's a bug somewhere else and not the fault of notes or this patch. Or does anybody have clue why saving with this line cg.writeEntry("scrollValue", QVariant(m_textEdit->nativeWidget()->verticalScrollBar()->value())); and restoring with this code int scrollValue = cg.readEntry("scrollValue").toInt(); if(scrollValue){ m_textEdit->nativeWidget()->verticalScrollBar()->setValue(scrollValue); } might not work?
Ah sorry, wrong bug :( This is for 168160
Created attachment 27000 [details] Save notes content into a file Finally, here is a patch for this too. It adds an working "Save As"-Option to the context menu.