mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-21 09:46:01 +00:00
Compare commits
2 Commits
1138b3875b
...
ab79a915ca
Author | SHA1 | Date | |
---|---|---|---|
|
ab79a915ca | ||
|
16902f6584 |
@ -5625,10 +5625,11 @@ void Text::dispatch(Cursor & cur, FuncRequest & cmd)
|
||||
FileName const tabstyle = libFileSearch("tabletemplates",
|
||||
style + suffix + ".lyx", "lyx");
|
||||
if (tabstyle.empty())
|
||||
break;
|
||||
break;
|
||||
UndoGroupHelper ugh(cur.buffer());
|
||||
cur.recordUndo();
|
||||
FuncRequest cmd2(LFUN_FILE_INSERT, tabstyle.absFileName() + " ignorelang");
|
||||
FuncRequest cmd2(LFUN_FILE_INSERT,
|
||||
quoteName(tabstyle.absFileName()) + " ignorelang");
|
||||
lyx::dispatch(cmd2);
|
||||
// go into table
|
||||
cur.backwardPos();
|
||||
|
@ -3571,8 +3571,6 @@ void GuiDocument::getTableStyles()
|
||||
QString data = fn.left(fn.lastIndexOf(".lyx"));
|
||||
QString guiname = data;
|
||||
guiname = toqstr(translateIfPossible(qstring_to_ucs4(guiname.replace('_', ' '))));
|
||||
QString relpath = toqstr(makeRelPath(qstring_to_ucs4(fn),
|
||||
qstring_to_ucs4(dir)));
|
||||
if (textLayoutModule->tableStyleCO->findData(data) == -1)
|
||||
textLayoutModule->tableStyleCO->addItem(guiname, data);
|
||||
}
|
||||
|
@ -63,8 +63,6 @@ void GuiTabularCreate::getFiles()
|
||||
QString data = fn.left(fn.lastIndexOf(".lyx"));
|
||||
QString guiname = data;
|
||||
guiname = toqstr(translateIfPossible(qstring_to_ucs4(guiname.replace('_', ' '))));
|
||||
QString relpath = toqstr(makeRelPath(qstring_to_ucs4(fn),
|
||||
qstring_to_ucs4(dir)));
|
||||
if (styleCO->findData(data) == -1)
|
||||
styleCO->addItem(guiname, data);
|
||||
}
|
||||
|
@ -77,6 +77,8 @@ What's new
|
||||
- Fix spacing problems in previews with math macros under specific
|
||||
circumstances (bug 13120).
|
||||
|
||||
- Fix tabular styles on systems with blanks in system directory path.
|
||||
|
||||
|
||||
* USER INTERFACE
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user