mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-13 20:09:59 +00:00
make sure inserting a tabular invokes a dialog
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@10246 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
49d8c0d3e0
commit
b0dd800145
@ -1,3 +1,7 @@
|
||||
2005-07-16 Jean-Marc Lasgouttes <lasgouttes@lyx.org>
|
||||
|
||||
* factory.C (createInset): fix bad logic for tabular creation
|
||||
|
||||
2005-07-16 Lars Gullik Bjønnes <larsbj@lyx.org>
|
||||
|
||||
* lyx_main.C (init): change some reLyX reference to tex2lyx
|
||||
|
@ -163,7 +163,7 @@ InsetBase * createInset(BufferView * bv, FuncRequest const & cmd)
|
||||
}
|
||||
|
||||
case LFUN_TABULAR_INSERT: {
|
||||
if (!cmd.argument.empty())
|
||||
if (cmd.argument.empty())
|
||||
return 0;
|
||||
std::istringstream ss(cmd.argument);
|
||||
int r = 0, c = 0;
|
||||
|
Loading…
x
Reference in New Issue
Block a user