1
0
anycmd 4 жил өмнө
parent
commit
300ab2a7ef

+ 1 - 1
src/AppModels/Vms/CoinKernelViewModel.cs

@@ -324,7 +324,7 @@ namespace NTMiner.Vms {
             }
             set {
                 _inputSegmentVms = value;
-                _gpuInputSegmentVms = _inputSegmentVms.Where(a => a.TargetGpu.IsSupportedGpu(NTMinerContext.Instance.GpuSet.GpuType)).ToList();
+                _gpuInputSegmentVms = _inputSegmentVms.Where(a => a.TargetGpu.IsSupportedGpu(NTMinerContext.Instance.GpuSet.GpuType)).OrderBy(a => a.Name).ToList();
                 OnPropertyChanged(nameof(InputSegmentVms));
                 OnPropertyChanged(nameof(GpuInputSegmentVms));
             }