示例#1
0
        private void plugins_Reloaded(object sender, PluginErrorEventArgs e)
        {
            if (e.HasErrors)
            {
                FormMessage.Error("Error Loading Plugins", "The following plugins will not be available until the issues are resolved:\n\n" + string.Join("\n\n", e.Errors), FormMessage.OK);
            }

            if (isLoaded)
            {
                browser.ReloadToTweetDeck();
            }
        }
示例#2
0
        private void plugins_Reloaded(object sender, PluginErrorEventArgs e)
        {
            if (e.HasErrors)
            {
                this.InvokeAsyncSafe(() => { // TODO not needed but makes code consistent...
                    FormMessage.Error("Error Loading Plugins", "The following plugins will not be available until the issues are resolved:\n\n" + string.Join("\n\n", e.Errors), FormMessage.OK);
                });
            }

            if (isLoaded)
            {
                browser.ReloadToTweetDeck();
            }
        }
示例#3
0
 public void ReloadToTweetDeck()
 {
     browser.ReloadToTweetDeck();
 }