You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: WikiIntegration/WikiButtonConfig.cs
+13-4Lines changed: 13 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -9,8 +9,15 @@ namespace WikiIntegration
9
9
{
10
10
internalsealedclassWikiButtonConfig:ConfigSection
11
11
{
12
-
privatestaticreadonlyDefiningConfigKey<bool>_components=new("Components","Whether to add the Wiki button to Components in Worker Inspectors.",()=>true);
13
-
privatestaticreadonlyDefiningConfigKey<bool>_protoFlux=new("ProtoFlux","Whether to add the Wiki button to ProtoFlux nodes.",()=>true);
12
+
privatestaticreadonlyDefiningConfigKey<bool>_components=new("Components","Whether to add the Wiki button to Components in Worker Inspectors.",()=>true)
13
+
{
14
+
newConfigKeySessionShare<bool>(true)
15
+
};
16
+
17
+
privatestaticreadonlyDefiningConfigKey<bool>_protoFlux=new("ProtoFlux","Whether to add the Wiki button to ProtoFlux nodes.",()=>true)
18
+
{
19
+
newConfigKeySessionShare<bool>(true)
20
+
};
14
21
15
22
privatereadonlyDefiningConfigKey<int>_componentOffset=new("ComponentOffset","The Order Offset of the Wiki button on Inspector Headers. Higher is further right.",()=>2)
16
23
{
@@ -23,11 +30,13 @@ internal sealed class WikiButtonConfig : ConfigSection
0 commit comments