[longomatch] Add the complete file path as a tooltip on the widget.



commit 6b0f7d7ebf32ea898be839223998762eb24c66ff
Author: Julien Moutte <julien fluendo com>
Date:   Sun Sep 7 03:11:46 2014 +0200

    Add the complete file path as a tooltip on the widget.

 LongoMatch.GUI/Gui/Component/MediaFileChooser.cs |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)
---
diff --git a/LongoMatch.GUI/Gui/Component/MediaFileChooser.cs 
b/LongoMatch.GUI/Gui/Component/MediaFileChooser.cs
index 3e38821..4a1e33d 100644
--- a/LongoMatch.GUI/Gui/Component/MediaFileChooser.cs
+++ b/LongoMatch.GUI/Gui/Component/MediaFileChooser.cs
@@ -67,8 +67,10 @@ namespace LongoMatch.Gui.Component
                {
                        if (mediaFile != null) {
                                fileentry.Text = System.IO.Path.GetFileName (mediaFile.FilePath);
+                               fileentry.TooltipText = mediaFile.FilePath;
                        } else if (file != null) {
                                fileentry.Text = System.IO.Path.GetFileName (file);
+                               fileentry.TooltipText = file;
                        } else {
                                fileentry.Text = Catalog.GetString ("Select file...");
                        }


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]