Skip to content

Commit

Permalink
完善部件的堆叠顺序处理
Browse files Browse the repository at this point in the history
  • Loading branch information
lc-soft committed Apr 9, 2013
1 parent 21dbb40 commit 7911f6c
Show file tree
Hide file tree
Showing 3 changed files with 226 additions and 132 deletions.
2 changes: 1 addition & 1 deletion src/LCUI_GraphLayer.c
Expand Up @@ -585,7 +585,7 @@ GraphLayer_Front( LCUI_GraphLayer *glayer )
queue = &glayer->parent->child;
total = Queue_GetTotal( queue );
for( i=0; i<total; ++i ) {
tmp_child = Queue_Get( queue, i );
tmp_child = (LCUI_GraphLayer *)Queue_Get( queue, i );
if( glayer == tmp_child ) {
src_pos = i;
continue;
Expand Down

0 comments on commit 7911f6c

Please sign in to comment.