diff options
| author | Michael <[email protected]> | 2017-02-26 15:57:04 -0500 |
|---|---|---|
| committer | Michael <[email protected]> | 2017-02-26 15:57:09 -0500 |
| commit | 82a5ca296bb6b4fe000b46af187fb41282e6bd62 (patch) | |
| tree | ec53d13ae88a171d2e5e11e3bc2aece6481a3c3c /ShiftOS.WinForms/Applications/Shiftnet.cs | |
| parent | ec61f5dfe9de92470cd91269c77713549e7d6159 (diff) | |
| download | shiftos_thereturn-82a5ca296bb6b4fe000b46af187fb41282e6bd62.tar.gz shiftos_thereturn-82a5ca296bb6b4fe000b46af187fb41282e6bd62.tar.bz2 shiftos_thereturn-82a5ca296bb6b4fe000b46af187fb41282e6bd62.zip | |
Increase shiftletters payout (and shiftnet sub stuff)
Diffstat (limited to 'ShiftOS.WinForms/Applications/Shiftnet.cs')
| -rw-r--r-- | ShiftOS.WinForms/Applications/Shiftnet.cs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ShiftOS.WinForms/Applications/Shiftnet.cs b/ShiftOS.WinForms/Applications/Shiftnet.cs index af0e6ad..3da7d6a 100644 --- a/ShiftOS.WinForms/Applications/Shiftnet.cs +++ b/ShiftOS.WinForms/Applications/Shiftnet.cs @@ -104,7 +104,10 @@ namespace ShiftOS.WinForms.Applications </html>"; string body = CommonMark.CommonMarkConverter.Convert(markdown); - + for(int i = 0; i <= Encoding.UTF8.GetBytes(body).Length; i += DownloadManager.GetDownloadSpeed()) + { + //halt the page load until 'download' finishes. + } html = html.Replace("<markdown/>", body); return html; } |
