mirror of
https://github.com/greenshot/greenshot
synced 2025-08-14 02:37:03 -07:00
Added Directory.Build.targets, this seems to help to import the target correctly. Removed chocolatey package again, as this seems to be the more stable approach (let's see if the build runs...)
This commit is contained in:
parent
5f242a79c8
commit
6831505ead
24 changed files with 175 additions and 186 deletions
|
@ -25,7 +25,6 @@ using System.Drawing;
|
|||
using System.IO;
|
||||
using System.Threading;
|
||||
using System.Windows;
|
||||
using Confluence;
|
||||
using GreenshotPlugin.Controls;
|
||||
using GreenshotPlugin.Core;
|
||||
using GreenshotPlugin.IniFile;
|
||||
|
@ -129,7 +128,7 @@ namespace GreenshotConfluencePlugin {
|
|||
bool openPage = (_page == null) && ConfluenceConfig.OpenPageAfterUpload;
|
||||
string filename = FilenameHelper.GetFilenameWithoutExtensionFromPattern(CoreConfig.OutputFileFilenamePattern, captureDetails);
|
||||
if (selectedPage == null) {
|
||||
ConfluenceUpload confluenceUpload = new ConfluenceUpload(filename);
|
||||
Forms.ConfluenceUpload confluenceUpload = new Forms.ConfluenceUpload(filename);
|
||||
bool? dialogResult = confluenceUpload.ShowDialog();
|
||||
if (dialogResult.HasValue && dialogResult.Value) {
|
||||
selectedPage = confluenceUpload.SelectedPage;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue