mirror of
https://github.com/chibicitiberiu/rainmeter-studio.git
synced 2024-02-24 04:33:31 +00:00
Can now add new items to project.
This commit is contained in:
@ -26,7 +26,11 @@ namespace RainmeterStudio.TextEditorPlugin
|
||||
InitializeComponent();
|
||||
|
||||
_document = document;
|
||||
text.Text = document.Lines.Aggregate((a, b) => a + "\n" + b);
|
||||
|
||||
StringBuilder txt = new StringBuilder();
|
||||
document.Lines.ForEach((line) => txt.AppendLine(line));
|
||||
|
||||
text.Text = txt.ToString();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user