GuzziMP / my-films

Automatically exported from code.google.com/p/my-films
0 stars 0 forks source link

Search History does not display selected Search in Virtual Keyboard #323

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Select a Search that supports Search History - e.g. TItle
2. If you have entered searches previous, Search History Dialog will display
3. Select a previous Search Term

What is the expected output? What do you see instead?
Expect to see the term in the Virtual Keyboard Input box, but in Default, and 
some other skins, it does not display.

Please use labels and text to provide additional information.

There is an option in virtual keyboard (stdKeyboard.xml) to 
<showLabelAsInitialText> - If a skin enables this option, it will display a 
text label according to the plugin code  e.g. "Enter password here" or "Enter 
Search Term here" INSIDE the input box. However, if there is no label, this 
appears to override the setting in My Films to display the selected search 
term.  Most skins don't enable <showLabelAsInitialText> because it is actually 
nicer to display the lable outside the VK. But we cannot be sure of that.

GUIKeyboard.cs has:

[XMLSkinElement("label")] protected string _labelText = "";

 public string Label
 {
   get { return _labelText; }
   set { _labelText = value; }
 }
I am not sure if it is possible to set labelText to the Search term or not. 

Original issue reported on code.google.com by Dade...@gmail.com on 22 Feb 2013 at 11:23

GoogleCodeExporter commented 8 years ago

Original comment by Guzz...@googlemail.com on 4 Mar 2013 at 3:34

GoogleCodeExporter commented 8 years ago
This issue was closed by revision r2852.

Original comment by Mikeplan...@web.de on 4 Mar 2013 at 4:05

GoogleCodeExporter commented 8 years ago
Verified in r2870

Original comment by Dade...@gmail.com on 28 Jun 2013 at 4:08