Skip to content

Commit 6cfe9ac

Browse files
committed
(split from main repo) Custom color scheme support, dark scheme
1 parent 8b64076 commit 6cfe9ac

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

FormGerritPublish.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
using System.Windows.Forms;
55
using GitCommands;
66
using GitExtUtils;
7+
using GitExtUtils.GitUI.Theming;
78
using GitUI.Properties;
89
using GitUIPluginInterfaces;
910
using JetBrains.Annotations;
@@ -32,9 +33,8 @@ public FormGerritPublish(IGitUICommands uiCommand)
3233
: base(uiCommand)
3334
{
3435
InitializeComponent();
36+
Publish.Image = Images.Push.AdaptLightness();
3537
InitializeComplete();
36-
37-
Publish.Image = Images.Push;
3838
PublishType.Items.AddRange(new object[]
3939
{
4040
new KeyValuePair<string, string>(_publishTypeReview.Text, ""),
@@ -246,4 +246,4 @@ private void AddRemoteClick(object sender, EventArgs e)
246246
_NO_TRANSLATE_Remotes.DataSource = Module.GetRemoteNames();
247247
}
248248
}
249-
}
249+
}

0 commit comments

Comments
 (0)