mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 01:59:02 +00:00
Accelerators
This commit is contained in:
parent
9d8ef32d13
commit
5606e934ac
@ -315,19 +315,19 @@ bool GuiInclude::isValid()
|
||||
int const item = typeCO->currentIndex();
|
||||
// Are we inputting or including a LyX file?
|
||||
if (item != 0 && item != 1) {
|
||||
okbutton->setText(qt_("OK"));
|
||||
okbutton->setText(qt_("&OK"));
|
||||
return true;
|
||||
}
|
||||
// Do we have a LyX filename?
|
||||
if (!isLyXFileName(fromqstr(fname))) {
|
||||
okbutton->setText(qt_("OK"));
|
||||
okbutton->setText(qt_("&OK"));
|
||||
return false;
|
||||
}
|
||||
string const bpath = buffer().filePath();
|
||||
// Path might be relative to current Buffer, so make absolute
|
||||
FileName const absfname = support::makeAbsPath(fromqstr(fname), bpath);
|
||||
// Set OK button text according to whether file already exists
|
||||
okbutton->setText(absfname.exists() ? qt_("OK") : qt_("Create"));
|
||||
okbutton->setText(absfname.exists() ? qt_("&OK") : qt_("&Create"));
|
||||
// enable edit button iff file is open in some Buffer
|
||||
editPB->setEnabled(theBufferList().getBuffer(absfname));
|
||||
return true;
|
||||
|
Loading…
Reference in New Issue
Block a user