mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-06 00:10:59 +00:00
Fix bug in xforms citation dialog.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5406 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
c7b1bd5a00
commit
2470016e1a
@ -1,3 +1,8 @@
|
|||||||
|
2002-10-15 Angus Leeming <leeming@lyx.org>
|
||||||
|
|
||||||
|
* FormCitation.C (updateBrowser): deselect the highlighted item when
|
||||||
|
updating the browser.
|
||||||
|
|
||||||
2002-10-14 Dekel Tsur <dekelts@tau.ac.il>
|
2002-10-14 Dekel Tsur <dekelts@tau.ac.il>
|
||||||
|
|
||||||
* FontInfo.C (query): Ignore bogus matches of scalable fonts.
|
* FontInfo.C (query): Ignore bogus matches of scalable fonts.
|
||||||
|
@ -471,8 +471,11 @@ void FormCitation::updateBrowser(FL_OBJECT * browser,
|
|||||||
// changed by loading the contents of the vec...
|
// changed by loading the contents of the vec...
|
||||||
vector<string> browser_keys = getVector(browser);
|
vector<string> browser_keys = getVector(browser);
|
||||||
|
|
||||||
if (browser_keys == keys)
|
if (browser_keys == keys) {
|
||||||
|
fl_deselect_browser(browser);
|
||||||
|
fl_set_browser_topline(browser, 1);
|
||||||
return;
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
// They will be changed. Proceed.
|
// They will be changed. Proceed.
|
||||||
fl_clear_browser(browser);
|
fl_clear_browser(browser);
|
||||||
|
Loading…
Reference in New Issue
Block a user