Skip to content

Commit

Permalink
Filter window position now relative to main app
Browse files Browse the repository at this point in the history
  • Loading branch information
benrhughes committed May 2, 2011
1 parent 88b0f92 commit 37bf2b8
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 10 deletions.
2 changes: 2 additions & 0 deletions Client/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,8 @@ private void Help(object sender, RoutedEventArgs e)
private void Filter(object sender, RoutedEventArgs e)
{
var f = new FilterDialog();
f.Left = this.Left + 10;
f.Top = this.Top + 10;
f.FilterText = User.Default.FilterText;
if (f.ShowDialog().Value)
{
Expand Down
4 changes: 2 additions & 2 deletions Client/Properties/SharedAssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@
// Build Number
// Revision
//
[assembly: AssemblyVersion("0.5.1.0")]
[assembly: AssemblyFileVersion("0.5.1.0")]
[assembly: AssemblyVersion("0.5.2.0")]
[assembly: AssemblyFileVersion("0.5.2.0")]
Binary file modified installer/Release/todonet.msi
Binary file not shown.
11 changes: 3 additions & 8 deletions installer/installer.vdproj
Original file line number Diff line number Diff line change
Expand Up @@ -175,11 +175,6 @@
"AssemblyAsmDisplayName" = "8:ToDoLib, Version=0.5.0.0, Culture=neutral, processorArchitecture=MSIL"
"ScatterAssemblies"
{
"_F384E1CB9E82650A34A13A452F81990E"
{
"Name" = "8:ToDoLib.dll"
"Attributes" = "3:512"
}
}
"SourcePath" = "8:ToDoLib.dll"
"TargetName" = "8:"
Expand Down Expand Up @@ -255,15 +250,15 @@
{
"Name" = "8:Microsoft Visual Studio"
"ProductName" = "8:todotxt.net"
"ProductCode" = "8:{C3675B43-153F-4983-B9F6-3A6E666A7B06}"
"PackageCode" = "8:{A0CC06B8-82EE-4B26-8474-E774DA464C73}"
"ProductCode" = "8:{C6ACC4D2-A758-42DD-A689-7779277343D2}"
"PackageCode" = "8:{6CD0867E-06BE-4416-94FC-C993684AA29C}"
"UpgradeCode" = "8:{15841F7C-B984-443B-B478-9324BBC33BCC}"
"AspNetVersion" = "8:4.0.30319.0"
"RestartWWWService" = "11:FALSE"
"RemovePreviousVersions" = "11:TRUE"
"DetectNewerInstalledVersion" = "11:TRUE"
"InstallAllUsers" = "11:FALSE"
"ProductVersion" = "8:0.5.1"
"ProductVersion" = "8:0.5.2"
"Manufacturer" = "8:Hughesoft"
"ARPHELPTELEPHONE" = "8:"
"ARPHELPLINK" = "8:"
Expand Down

0 comments on commit 37bf2b8

Please sign in to comment.