Skip to content

Commit

Permalink
Merge pull request #5 from primetime43/dev
Browse files Browse the repository at this point in the history
Dev to Main merge v1.5.1
  • Loading branch information
primetime43 authored Dec 9, 2022
2 parents b5a1526 + cccec21 commit bc39599
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
5 changes: 1 addition & 4 deletions X-IPTV/ChannelOptions.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,7 @@ private void openVLCbtn_Click(object sender, RoutedEventArgs e)
startInfo.UseShellExecute = false;
startInfo.CreateNoWindow = true;

Process processTemp = new Process();
processTemp.StartInfo = startInfo;
processTemp.EnableRaisingEvents = true;
processTemp.Start();
Process.Start(startInfo);
}

public void displaySelectedChannelData(ChannelEntry entry)
Expand Down
2 changes: 1 addition & 1 deletion X-IPTV/UserLogin.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public partial class UserLogin : Window
public UserLogin()
{
InitializeComponent();
this.Title = "User Login v1.5";
this.Title = "User Login v1.5.1";
assemblyFolder = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location);
saveDir = assemblyFolder + @"\Users\";
loadUsersFromDirectory();
Expand Down

0 comments on commit bc39599

Please sign in to comment.