Skip to content

Commit 4969ad3

Browse files
committed
Update dictionary folder path retrieval logic
Replaced `FileUtils.Dictionaries` with `Configuration.DictionariesDirectory` for improved clarity and consistency in accessing the dictionaries folder path. This ensures alignment with the updated configuration structure.
1 parent afa141e commit 4969ad3

File tree

1 file changed

+1
-1
lines changed
  • source/DictionariesProvider/Forms

1 file changed

+1
-1
lines changed

source/DictionariesProvider/Forms/Main.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public Main()
2929

3030
linkLabelOpenDicFolder.Click += delegate
3131
{
32-
Process.Start(FileUtils.Dictionaries);
32+
Process.Start(Configuration.DictionariesDirectory);
3333
};
3434

3535
listViewDownloadUrls.SelectedIndexChanged += (sender, e) =>

0 commit comments

Comments
 (0)