X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fcec-config-gui%2FCecConfigGUI.cs;h=e3decec7fe03ef9907b602182cc21f214f52136b;hb=3efda01ac7b070e09012a5725112eb44c17001b4;hp=4f84b2cf2f22de0005c37e87d98ce5b5c5f56cf3;hpb=566a8c68bb4c34031b6f61b2afdcb05c9f1d755c;p=deb_libcec.git diff --git a/src/cec-config-gui/CecConfigGUI.cs b/src/cec-config-gui/CecConfigGUI.cs index 4f84b2c..e3decec 100644 --- a/src/cec-config-gui/CecConfigGUI.cs +++ b/src/cec-config-gui/CecConfigGUI.cs @@ -884,7 +884,7 @@ namespace CecConfigGui if (!SuppressUpdates && ActiveProcess == null) { SetControlsEnabled(false); - ActiveProcess = new RescanDevices(); + ActiveProcess = new RescanDevices(ref Lib); ActiveProcess.EventHandler += new EventHandler(ProcessEventHandler); (new Thread(new ThreadStart(ActiveProcess.Run))).Start(); } @@ -1032,6 +1032,8 @@ namespace CecConfigGui SetCheckboxItemChecked(cbWakeDevices, iPtr, Config.WakeDevices.IsSet((CecLogicalAddress)iPtr)); for (int iPtr = 0; iPtr < 15; iPtr++) SetCheckboxItemChecked(cbPowerOffDevices, iPtr, Config.PowerOffDevices.IsSet((CecLogicalAddress)iPtr)); + + SetControlText(this, "Pulse-Eight USB-CEC Adapter - libCEC " + Lib.ToString(Config.ServerVersion)); return 1; }