File tree Expand file tree Collapse file tree
BellColorTextBox.ImGuiNet Expand file tree Collapse file tree Original file line number Diff line number Diff line change 66 <Nullable >enable</Nullable >
77 <RootNamespace >Bell</RootNamespace >
88 <AllowUnsafeBlocks >true</AllowUnsafeBlocks >
9- <Version >0.1.3 </Version >
9+ <Version >0.1.4 </Version >
1010 <Authors >kjs104901</Authors >
1111 <Company >kjs104901</Company >
1212 <Description >BellColorTextBox backend</Description >
Original file line number Diff line number Diff line change 88 <PackageProjectUrl ></PackageProjectUrl >
99 <PackageReadmeFile >README.md</PackageReadmeFile >
1010 <RepositoryUrl >https://github.com/kjs104901/BellColorTextBox</RepositoryUrl >
11- <Version >0.1.3 </Version >
11+ <Version >0.1.4 </Version >
1212 <Company >kjs104901</Company >
1313 <Authors >kjs104901</Authors >
1414 <Description >Abstracted text box library</Description >
Original file line number Diff line number Diff line change @@ -94,9 +94,24 @@ public string Text
9494 RowManager . SetRowCacheDirty ( ) ;
9595 }
9696 }
97-
98- public int SearchCount => SearchManager . SearchCount ;
99- public int SearchIndex => SearchManager . SearchIndex ;
97+
98+ public int SearchCount
99+ {
100+ get
101+ {
102+ Ins = this ;
103+ return SearchManager . SearchCount ;
104+ }
105+ }
106+
107+ public int SearchIndex
108+ {
109+ get
110+ {
111+ Ins = this ;
112+ return SearchManager . SearchIndex ;
113+ }
114+ }
100115
101116 public string GetDebugString ( )
102117 {
Original file line number Diff line number Diff line change @@ -44,6 +44,7 @@ public WrapMode WrapMode
4444 if ( _wrapMode == value )
4545 return ;
4646
47+ Ins = this ;
4748 _wrapMode = value ;
4849 foreach ( Line line in LineManager . Lines )
4950 {
You can’t perform that action at this time.
0 commit comments