Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Ebb <matt@mke3.net>2010-05-24 05:23:46 +0400
committerMatt Ebb <matt@mke3.net>2010-05-24 05:23:46 +0400
commit4e70cd4a523b791a9b819deb34178f3c582a3e47 (patch)
tree6cc0b949acb24c2f5c2b0c42ecd6d3665e709275 /source/blender/editors/space_text
parent3aab8f245a9d97db9e56375652ab75feede69170 (diff)
Fix [#22382] Text Editor properties pannel scales, not scrolls, with MMW
Diffstat (limited to 'source/blender/editors/space_text')
-rw-r--r--source/blender/editors/space_text/space_text.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_text/space_text.c b/source/blender/editors/space_text/space_text.c
index 513f167efe9..3a23cd32629 100644
--- a/source/blender/editors/space_text/space_text.c
+++ b/source/blender/editors/space_text/space_text.c
@@ -466,7 +466,7 @@ void ED_spacetype_text(void)
art= MEM_callocN(sizeof(ARegionType), "spacetype text region");
art->regionid = RGN_TYPE_UI;
art->prefsizex= UI_COMPACT_PANEL_WIDTH;
- art->keymapflag= ED_KEYMAP_UI|ED_KEYMAP_VIEW2D;
+ art->keymapflag= ED_KEYMAP_UI;
art->init= text_properties_area_init;
art->draw= text_properties_area_draw;