Skip to content

Commit

Permalink
new color for Single verse position in the editor + version 3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hrmoh committed Sep 27, 2024
1 parent fbe1a89 commit 0215504
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions ganjoor/Main User Control/GanjoorViewer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -598,6 +598,8 @@ private int ShowPoem(GanjoorPoem poem, bool keepTrack, string highlightWord)
{
if (verses[i]._Position == VersePosition.Comment)
lblVerse.BackColor = Color.LightGray;
else if (verses[i]._Position == VersePosition.Single)
lblVerse.BackColor = Color.LightYellow;
lblVerse.Leave += new EventHandler(lblVerse_Leave);
lblVerse.TextChanged += new EventHandler(lblVerse_TextChanged);
lblVerse.KeyDown += new KeyEventHandler(lblVerse_KeyDown);
Expand Down
6 changes: 3 additions & 3 deletions ganjoor/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("حمیدرضا محمدی")]
[assembly: AssemblyProduct("گنجور")]
[assembly: AssemblyCopyright("GPL, 1388-1402, ganjoor.net, Hamid Reza Mohammadi")]
[assembly: AssemblyCopyright("GPL, 1388-1403, ganjoor.net, Hamid Reza Mohammadi")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

Expand All @@ -33,6 +33,6 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.999.*")]
[assembly: AssemblyFileVersion("2.9.99.0")]
[assembly: AssemblyVersion("3.0.*")]
[assembly: AssemblyFileVersion("3.0.0.0")]
[assembly: NeutralResourcesLanguageAttribute("fa-IR")]

0 comments on commit 0215504

Please sign in to comment.