fixed menu timestamp on root menu, Patch from Mathias Gumz
This commit is contained in:
parent
3f615b530f
commit
048861bf35
1 changed files with 4 additions and 1 deletions
|
@ -22,7 +22,7 @@
|
||||||
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||||
// DEALINGS IN THE SOFTWARE.
|
// DEALINGS IN THE SOFTWARE.
|
||||||
|
|
||||||
// $Id: Screen.cc,v 1.268 2004/02/27 12:32:54 fluxgen Exp $
|
// $Id: Screen.cc,v 1.269 2004/03/18 14:45:56 fluxgen Exp $
|
||||||
|
|
||||||
|
|
||||||
#include "Screen.hh"
|
#include "Screen.hh"
|
||||||
|
@ -1827,6 +1827,9 @@ void BScreen::initMenu() {
|
||||||
if (err>0) {
|
if (err>0) {
|
||||||
m_rootmenu->setLabel(label.c_str());
|
m_rootmenu->setLabel(label.c_str());
|
||||||
defaultMenu = parseMenuFile(menu_file, *m_rootmenu.get(), row);
|
defaultMenu = parseMenuFile(menu_file, *m_rootmenu.get(), row);
|
||||||
|
// save filename so we can check timestamp on the root menu
|
||||||
|
if (!defaultMenu)
|
||||||
|
fb->saveMenuFilename(menufilestr.c_str());
|
||||||
} else
|
} else
|
||||||
cerr<<"Error in menufile. Line("<<row<<")"<<endl;
|
cerr<<"Error in menufile. Line("<<row<<")"<<endl;
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in a new issue