mirror of
https://github.com/flashwave/topmostfriend.git
synced 2024-11-22 01:48:43 +00:00
v1.5.1 - 2021-02-04
This commit is contained in:
parent
5a51414469
commit
103d3d4bff
2 changed files with 39 additions and 35 deletions
|
@ -237,8 +237,10 @@ namespace TopMostFriend {
|
|||
}
|
||||
|
||||
private static void RefreshWindowList() {
|
||||
IEnumerable<WindowInfo> windows = WindowInfo.GetAllWindows();
|
||||
List<ToolStripItem> items = new List<ToolStripItem>();
|
||||
|
||||
if(Settings.Get(SHOW_WINDOW_LIST, true)) {
|
||||
IEnumerable<WindowInfo> windows = WindowInfo.GetAllWindows();
|
||||
Process lastProc = null;
|
||||
bool procSeparator = Settings.Get(PROCESS_SEPARATOR_SETTING, false);
|
||||
bool showEmptyTitles = Settings.Get(SHOW_EMPTY_WINDOW_SETTING, false);
|
||||
|
@ -277,6 +279,8 @@ namespace TopMostFriend {
|
|||
}
|
||||
|
||||
items.AddRange(ListActionItems);
|
||||
}
|
||||
|
||||
items.AddRange(AppActionItems);
|
||||
|
||||
CtxMenu.Items.Clear();
|
||||
|
|
|
@ -29,5 +29,5 @@ using System.Runtime.InteropServices;
|
|||
// Build Number
|
||||
// Revision
|
||||
//
|
||||
[assembly: AssemblyVersion("1.5.0.0")]
|
||||
[assembly: AssemblyFileVersion("1.5.0.0")]
|
||||
[assembly: AssemblyVersion("1.5.1.0")]
|
||||
[assembly: AssemblyFileVersion("1.5.1.0")]
|
||||
|
|
Loading…
Reference in a new issue