mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 01:59:02 +00:00
parent
3fb8d71869
commit
f5f8c6fd38
@ -1660,10 +1660,19 @@ void GuiApplication::dispatch(FuncRequest const & cmd, DispatchResult & dr)
|
||||
crc = for_each(fname.begin(), fname.end(), crc);
|
||||
createView(crc.checksum());
|
||||
current_view_->openDocument(fname);
|
||||
if (current_view_ && !current_view_->documentBufferView())
|
||||
if (!current_view_->documentBufferView())
|
||||
current_view_->close();
|
||||
} else
|
||||
else {
|
||||
current_view_->raise();
|
||||
current_view_->activateWindow();
|
||||
current_view_->showNormal();
|
||||
}
|
||||
} else {
|
||||
current_view_->openDocument(fname);
|
||||
current_view_->raise();
|
||||
current_view_->activateWindow();
|
||||
current_view_->showNormal();
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
||||
|
@ -33,6 +33,8 @@ What's new
|
||||
|
||||
- Added a new module "Title and Preamble Hacks".
|
||||
|
||||
- Bring window to front after loading a document in single instance (bug 7875).
|
||||
|
||||
|
||||
* DOCUMENTATION AND LOCALIZATION
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user