Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

466 Accessibility #467

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions EspionSpotify/EspionSpotify.csproj.DotSettings
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
<wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
<s:String x:Key="/Default/DesignerComponentManagerNuGet/DesignerToolboxNuGetState/@EntryValue">C:\Users\w1z1k\Documents\spy-spotify\packages\MetroModernUI.1.4.0.0\lib\net\MetroFramework.dll|MetroFramework.Components.MetroStyleExtender;MetroFramework.Components.MetroStyleManager</s:String></wpf:ResourceDictionary>
2 changes: 1 addition & 1 deletion EspionSpotify/Recorder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ public sealed class Recorder : IRecorder, IDisposable
private readonly Track _track;
private readonly IAudioThrottler _audioThrottler;
private readonly UserSettings _userSettings;
private readonly IProcessManager _processManager;

private bool _disposed;
private string _tempEncodeFile;
Expand All @@ -38,7 +39,6 @@ public sealed class Recorder : IRecorder, IDisposable
private CancellationTokenSource _cancellationTokenSource;
private OutputFile _currentOutputFile;
private Stream _tempWaveWriter;
private IProcessManager _processManager;

public Recorder()
{
Expand Down
Loading